Skip to content
Snippets Groups Projects
Commit 06677653 authored by Guillaume Martres's avatar Guillaume Martres
Browse files

Add git pull to the instructions

parent 8ac8d3bb
No related branches found
No related tags found
No related merge requests found
...@@ -52,9 +52,18 @@ git commit -am "My message" ...@@ -52,9 +52,18 @@ git commit -am "My message"
``` ```
You can then synchronize your local git repository with the gitlab server by You can then synchronize your local git repository with the gitlab server by
running: first running:
```shell ```shell
git push git pull
```
This will merge in your local repository any change we made to the assignment
(we only change assignments to fix critical bugs found after it's been released,
so most of the time this will not do anything).
Finally, you can push your changes to gitlab:
```shell
git push
``` ```
Note that there are also graphical user interfaces to interact with git, for Note that there are also graphical user interfaces to interact with git, for
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment