Skip to content
Snippets Groups Projects
Commit 1032a2ff authored by Dorian Selimovic's avatar Dorian Selimovic
Browse files

Merge branch 'selimovic-2.4' into selimovic

parents 2fadf416 ae470aa3
No related branches found
No related tags found
No related merge requests found
......@@ -229,9 +229,42 @@ nothing to commit, working tree clean
```
0. Créez une branche pour _développer_ la réponse de ce point (nommez là `mybranch-2.4` par exemple)
```
$ git checkout -b selimovic-2.4
```
0. Afficher un historique sous forme de graph (`a dog`) de votre repo
```
$ git log --all --decorate --oneline --graph
* 434403c (HEAD -> selimovic-2.4, selimovic) Q2.3
* 992376b Q2.2
* 7a07334 (master) Q1.15
* 02672f8 Q1.13
* 696e5f9 Q1.10
* db1ca34 Q1.9
* 80d9397 Rename compte-rendu
* e4e58b9 Q1.5
* f256d85 Q1.3
* 6bd3cbb Add compte-rendu.md
```
0. Pourquoi les 2 branches pointent elles sur la même révision ?`*`
>Parce qu'il n'y a pas encore de commit supplémentaire sur la branche selimovic-2.4
0. Afficher à nouvea l'historique pour montrer les modifications suite au précédent commit `*`
```
$ git log --all --decorate --oneline --graph
* 77e2569 (HEAD -> selimovic-2.4) Q2.4.2
* 434403c (selimovic) Q2.3
* 992376b Q2.2
* 7a07334 (master) Q1.15
* 02672f8 Q1.13
* 696e5f9 Q1.10
* db1ca34 Q1.9
* 80d9397 Rename compte-rendu
* e4e58b9 Q1.5
* f256d85 Q1.3
* 6bd3cbb Add compte-rendu.md
```
0. Revenir la brache `mybranch`
```
$ git checkout selimovic
......
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