Newer
Older
# Cours Forge ZZ2 F2 2017
# Infos étudiant :
Par binôme Nom Prénom:
## TP 1
Télécharger le sujet du TP à l'adresse suivante :
https://gitlab.isima.fr/mazenovi/2017-F2-Forge
#### 1. Les basiques
0. Créer un repository git
```
$ git init
Initialized empty Git repository in C:/TP1/.git/
```
0. _Par la suite pensez à commiter votre compte rendu apres chaques étapes dont l'enoncé est terminé par `*`, pour les messages de commit vous pouvez utiliser les numéros des questions (Ex Q1.2 ici)_
0. Ajouter le compte rendu dans le repo `*`
```
$ git add .
```
> On commite cette étape Q1.3
```
$ git commit -m "Q1.3"
[master (root-commit) b0b4b05] Q1.3
1 file changed, 258 insertions(+)
create mode 100644 cr.md
```
$ git status
On branch master
nothing to commit, working tree clean
0. Modifiez le CR pour supprimer la première partie et indiquez vos noms (n'oublier pas de faire un `git add` pour marque le fichier comme devant être ajouté) `*`
```
$ git commit -m "Q1.5"
[master 6866275] Q1.5
1 file changed, 7 insertions(+), 3 deletions(-)
```
$ git log
commit 80f71a0487d0b236a26bfd9e540582b68cad7943
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:15:48 2018 +0100
Q1.5
commit 3ec344ecfd24df41ca97396f27b52ec570297ce3
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:02:43 2018 +0100
Q1.3
0. Renommer ce fichier en préfixant avec vos noms en amendant le commit précédent (`git commit -m "mon message"` pour indiquer le mesage de commit directement) `*`
```
> On commite cette étape Q1.7 en amendant le commit précédent
```
$ git commit -m "Q1.7" --amend
[master abfd2d9] Q1.7
Date: Mon Feb 12 21:15:48 2018 +0100
1 file changed, 27 insertions(+), 8 deletions(-)
rename cr.md => REDA_YOUSSEF.md (91%)
```
$ git log
commit abfd2d91c6fff3d02fd132e77c012cc695b2ec84
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:15:48 2018 +0100
Q1.7
commit 3ec344ecfd24df41ca97396f27b52ec570297ce3
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:02:43 2018 +0100
Q1.3
> **NOTE:** On remarque bien que le commit Q1.5 est remplacer par celui de Q1.7
0. Il ne devrait y avoir que deux entrées dans l'historique pourquoi ? `*`
> On doit y avoir exactement deux entrées dans l'historique `Q1.3` et `Q1.7` et cela parcequ'on avait remplacer le commit `Q1.5` par `Q1.7` en ajoutant `--amend` à la fin de la commande `commit`
```
$ git add *
$ git commit -m "Q1.9"
[master a38f03f] Q1.9
1 file changed, 24 insertions(+), 3 deletions(-)
0. Créer un nouveau fichier, nommé start, contenant la date et l'heure actuelle `*`
```
$ touch start
$ date > start
$ git add .
warning: LF will be replaced by CRLF in start.
The file will have its original line endings in your working directory.
```
> On commite cette étape Q1.10
```
$ git commit -m "Q1.10"
[master 51a5add] Q1.10
2 files changed, 14 insertions(+), 5 deletions(-)
create mode 100644 start
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: REDA_YOUSSEF.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
file2ignore
no changes added to commit (use "git add" and/or "git commit -a")
0. On souhaite que ce fichier soit ignoré et ne soit jamais commiter. Réalisez la configuration nécesaire pour que cette regle soit effective `*`
```
$ touch .gitignore
$ echo file2ignore > .gitignore
$ git add *
The following paths are ignored by one of your .gitignore files:
file2ignore
Use -f if you really want to add them.
```
> On commite cette étape Q1.13
```
$ git commit -m "Q1.13"
[master 715a4ee] Q1.13
1 file changed, 26 insertions(+), 6 deletions(-)
0. Lister le contenu du repertoire courant, afficher le status et la log
```
$ git ls-files
REDA_YOUSSEF.md
start
```
```
$ git status
On branch master
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: REDA_YOUSSEF.md
Untracked files:
(use "git add <file>..." to include in what will be committed)
.gitignore
no changes added to commit (use "git add" and/or "git commit -a")
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
```
$ git log
commit 715a4ee8285da57cd0debd02ef0d2756d7e9408a
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 22:05:17 2018 +0100
Q1.13
commit 51a5addb0f97faae02a4e72054fb4af151e41fd5
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:53:17 2018 +0100
Q1.10
commit a38f03f0e4779c9aec92bd1bd6dce92c18f03723
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:40:41 2018 +0100
Q1.9
commit abfd2d91c6fff3d02fd132e77c012cc695b2ec84
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:15:48 2018 +0100
Q1.7
:...skipping...
commit 715a4ee8285da57cd0debd02ef0d2756d7e9408a
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 22:05:17 2018 +0100
Q1.13
commit 51a5addb0f97faae02a4e72054fb4af151e41fd5
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:53:17 2018 +0100
Q1.10
commit a38f03f0e4779c9aec92bd1bd6dce92c18f03723
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:40:41 2018 +0100
Q1.9
commit abfd2d91c6fff3d02fd132e77c012cc695b2ec84
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:15:48 2018 +0100
Q1.7
commit 3ec344ecfd24df41ca97396f27b52ec570297ce3
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:02:43 2018 +0100
Q1.3
```
0. Avant de commiter affichez les modifications par rapport à la précédente révision ? `*`
```
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
$ git diff
diff --git a/REDA_YOUSSEF.md b/REDA_YOUSSEF.md
index 26d82fc..50663bf 100644
--- a/REDA_YOUSSEF.md
+++ b/REDA_YOUSSEF.md
@@ -147,14 +147,70 @@ Use -f if you really want to add them.
```
> On commite cette étape Q1.13
```
-git commit -m "Q1.13"
+$ git commit -m "Q1.13"
+[master 715a4ee] Q1.13
+ 1 file changed, 26 insertions(+), 6 deletions(-)
```
+
0. Lister le contenu du repertoire courant, afficher le status et la log
```
-git ls-files
-git status
-git log
+$ git ls-files
+REDA_YOUSSEF.md
+start
+```
:...skipping...
diff --git a/REDA_YOUSSEF.md b/REDA_YOUSSEF.md
index 26d82fc..50663bf 100644
--- a/REDA_YOUSSEF.md
+++ b/REDA_YOUSSEF.md
@@ -147,14 +147,70 @@ Use -f if you really want to add them.
```
> On commite cette étape Q1.13
```
-git commit -m "Q1.13"
+$ git commit -m "Q1.13"
+[master 715a4ee] Q1.13
+ 1 file changed, 26 insertions(+), 6 deletions(-)
```
+
0. Lister le contenu du repertoire courant, afficher le status et la log
```
-git ls-files
-git status
-git log
+$ git ls-files
+REDA_YOUSSEF.md
+start
+```
+```
+$ git status
+On branch master
+Changes not staged for commit:
+ (use "git add <file>..." to update what will be committed)
+ (use "git checkout -- <file>..." to discard changes in working directory)
+ modified: REDA_YOUSSEF.md
+Untracked files:
+ (use "git add <file>..." to include in what will be committed)
+ .gitignore
+no changes added to commit (use "git add" and/or "git commit -a")
+```
```
+$ git log
+commit 715a4ee8285da57cd0debd02ef0d2756d7e9408a
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 22:05:17 2018 +0100
+ Q1.13
+commit 51a5addb0f97faae02a4e72054fb4af151e41fd5
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:53:17 2018 +0100
+ Q1.10
+commit a38f03f0e4779c9aec92bd1bd6dce92c18f03723
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:40:41 2018 +0100
+ Q1.9
+commit abfd2d91c6fff3d02fd132e77c012cc695b2ec84
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:15:48 2018 +0100
+ Q1.7
+:...skipping...
+commit 715a4ee8285da57cd0debd02ef0d2756d7e9408a
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 22:05:17 2018 +0100
+ Q1.13
+commit 51a5addb0f97faae02a4e72054fb4af151e41fd5
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:53:17 2018 +0100
+ Q1.10
+commit a38f03f0e4779c9aec92bd1bd6dce92c18f03723
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:40:41 2018 +0100
+ Q1.9
+commit abfd2d91c6fff3d02fd132e77c012cc695b2ec84
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:15:48 2018 +0100
+ Q1.7
+commit 3ec344ecfd24df41ca97396f27b52ec570297ce3
+Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
+Date: Mon Feb 12 21:02:43 2018 +0100
+ Q1.3
+```
+
0. Avant de commiter affichez les modifications par rapport à la précédente révision ? `*`
```
git diff
```
```
$ git add *
The following paths are ignored by one of your .gitignore files:
file2ignore
Use -f if you really want to add them.
$ git commit -m "Q1.15"
[master 717b390] Q1.15
1 file changed, 168 insertions(+), 5 deletions(-)
```
##### 2. Les branches
0. Créez une branche portant votre nom et basculer sur cette branche (dans la suite du TP cette branche est désignée par `mybranch`)
```
$ git branch reda_youssef
$ git checkout reda_youssef
Switched to branch 'reda_youssef'
M REDA_YOUSSEF.md
0. Lister les branches locales et les fichiers présent dans le répertoire courant `*`
```
$ git branch
master
* reda_youssef
```
```
$ git ls-files
REDA_YOUSSEF.md
start
```
```
$ git add .
warning: LF will be replaced by CRLF in .gitignore.
The file will have its original line endings in your working directory.
```
$ git commit -m "Q2.2"
[reda_youssef 03c3017] Q2.2
2 files changed, 31 insertions(+), 4 deletions(-)
create mode 100644 .gitignore
$ git status
On branch reda_youssef
Changes not staged for commit:
(use "git add <file>..." to update what will be committed)
(use "git checkout -- <file>..." to discard changes in working directory)
modified: REDA_YOUSSEF.md
no changes added to commit (use "git add" and/or "git commit -a")
```
$ git commit -m "Q2.3"
[reda_youssef 71592a8] Q2.3
1 file changed, 21 insertions(+), 3 deletions(-)
0. Créez une branche pour _développer_ la réponse de ce point (nommez là `mybranch-2.4` par exemple)
```
0. Afficher un historique sous forme de graph (`a dog`) de votre repo
```
$ git log --all --graph --decorate --oneline
* 71592a8 (HEAD -> reda_youssef-2.4, reda_youssef) Q2.3
* 03c3017 Q2.2
* 717b390 (master) Q1.15
* 715a4ee Q1.13
* 51a5add Q1.10
* a38f03f Q1.9
* abfd2d9 Q1.7
* 3ec344e Q1.3
0. Pourquoi les 2 branches pointent elles sur la même révision ?`*`
> On remarque que les 2 branches `reda_youssef` et `reda_youssef-2.4` pointent sur la même révision puisque il n'y pas de `commit`
```
$ git add .
$ git commit -m "Q2.4.2"
[reda_youssef-2.4 12bae9c] Q2.4.2
1 file changed, 186 insertions(+), 14 deletions(-)
0. Afficher à nouveau l'historique pour montrer les modifications suite au précédent commit `*`
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:21:41 2018 +0100
|
| Q2.3
|
* commit 03c3017
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:19:47 2018 +0100
|
| Q2.2
|
* commit 717b390 (master)
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:14:02 2018 +0100
|
| Q1.15
:...skipping...
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:21:41 2018 +0100
|
| Q2.3
|
* commit 03c3017
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:19:47 2018 +0100
|
| Q2.2
|
* commit 717b390 (master)
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:14:02 2018 +0100
|
| Q1.15
|
* commit 715a4ee
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:05:17 2018 +0100
|
| Q1.13
|
* commit 51a5add
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:53:17 2018 +0100
|
| Q1.10
|
* commit a38f03f
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:40:41 2018 +0100
|
| Q1.9
|
* commit abfd2d9
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:15:48 2018 +0100
|
| Q1.7
|
* commit 3ec344e
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:02:43 2018 +0100
Q1.3
> On commite cette étape Q2.4.3
```
$ git add .
$ git commit -m "Q2.4.3"
[reda_youssef a9a2473] Q2.4.3
1 file changed, 86 insertions(+), 2 deletions(-)
0. Pourquoi les 2 branches pointent elles sur la même révision ?`*`
$ git add .
$ git commit -m "Q2.4.4"
[reda_youssef f6ac822] Q2.4.4
1 file changed, 8 insertions(+), 3 deletions(-)
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
0. Afficher à nouveau l'historique pour montrer les modifications suite au précédent commit `*`
```
$ git log --graph --abbrev-commit --decorate
* commit f6ac822 (HEAD -> reda_youssef)
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:35:25 2018 +0100
|
| Q2.4.4
|
* commit a9a2473
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:32:40 2018 +0100
|
| Q2.4.3
|
* commit 767c502
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:29:28 2018 +0100
|
| Q2.4.2
|
* commit 71592a8 (reda_youssef-2.4)
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:21:41 2018 +0100
|
| Q2.3
|
* commit 03c3017
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:19:47 2018 +0100
|
| Q2.2
|
* commit 717b390 (master)
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:14:02 2018 +0100
|
| Q1.15
|
* commit 715a4ee
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 22:05:17 2018 +0100
|
| Q1.13
|
* commit 51a5add
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:53:17 2018 +0100
|
| Q1.10
|
* commit a38f03f
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:40:41 2018 +0100
|
| Q1.9
|
* commit abfd2d9
| Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
| Date: Mon Feb 12 21:15:48 2018 +0100
|
| Q1.7
|
* commit 3ec344e
Author: NIDABRAHIM Youssef <youssef.nidabrahim@um5s.net.ma>
Date: Mon Feb 12 21:02:43 2018 +0100
Q1.3
```
0. Revenir la brache `mybranch`
```
git checkout reda_youssef
```
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
0. Où sont passé vos reponces au point 2.4 ? `*`
```
git add .
git commit -m "Q2.6"
```
0. Affichez un historique sous forme de graph (`a dog`) de votre repo, Que peux ton en dire ?
```
git log --all --graph --decorate --oneline
```
0. Revenir sur la branche master
```
git checkout master
```
0. Ajoutez et commitez un fichier (touch new_file)
```
touch new_file
git add .
git commit -m "Q2.9"
```
0. Revenir sur votre branche `mybranch` pour completer le compte rendu `*`
```
git checkout reda_youssef
```
0. Affichez un historique sous forme de graph (`a dog`) de votre repo `*`
```
git log --all --graph --decorate --oneline
```
##### 3. Merge
0. Merge depuis head
0. switcher sur une nouvelle branche `mybranch-3.1`
```
git brach -b reda_youssef_3
```
0. ajout un nouveau fichier nommé easy_merge avec la date et l'heure actuelle `*`
```
touch easy_merge
date > easy_merge
git add .
git commit -m "Q3.1.2"
```
0. merger la branche `mybranch-4.1` sur `mybranch`
```
git checkout reda_youssef
git merge reda_youssef_3
```
0. Afficher le status
```
git status
```
0. Pourquoi n'y a t'il aucune modification en cours ? `*`
```
can on a rien fait sur la branche reda_youssef
git add .
git commit -m "Q3.3"
```
0. Affichez un historique sous forme de graph (`a dog`) de votre repo et décire l'état courant`*`
```
git log --all --graph --decorate --oneline
git add .
git commit -m "Q3.4"
```
0. Merge avec modifications
0. Mergez les modifications de la branche `mybranch-2.4` sur `mybranch` (`*echap* :wq *enter*` pour sauvegarder le message de commit et quitter)`*`
```
git checkout reda_youssef
git branch reda_youssef2
git add .
git commit -m "Q3.5.1"
```
0. Affichez un historique sous forme de graph (`a dog`) de votre repo `*`
```
git log --all --graph --decorate --oneline
git add .
git commit -m "Q3.5.2"
```
0. Merge avec conflit
0. Céer une nouvelle branche `mybranch-3.6`
```
git branch reda_youssef_3.6
```
0. Notez dans le CR la date et l'heure actuelle (avec la commande `date` par exemple) `*`
```
date > BENCHRAA_NIDABRAHIM.md
```
0. Switchez sur la nouvelle branche et modifiez la réponse précendante dans le CR avec le `*`
```
git checkout reda_youssef_3.6
date > BENCHRAA_NIDABRAHIM
```
0. Réalisez le merge de la brache `mybranch-3.6` sur `mybranch`. Le prompt change, pourquoi ? Gerer le conflit et commiter.
```
git checkout reda_youssef
git merge reda_youssef_3.6
```
0. Supprimer les branches de feature et afficher toutes les branches restantes, affichez un historique sous forme de graph (`a dog`) de votre repo `*`
```
git branch -D reda_youssef_2
git branch -D reda_youssef_3
git branch -D reda_youssef_3.6
git log --all --graph --decorate --oneline
```
##### 4. Remote
0. Afficher l'historique de votre repo
```
git log --all --graph --decorate --oneline
```
0. Ajouter le projet "2017-F2-Forge" comme repository distant `*`
```
git remote add origin https://mobenchraa@gitlab.isima.fr/mazenovi/2017-F2-Forge.git
git add .
git commit -m
```
0. Lister les branches distantes
```
git remote show https://mobenchraa@gitlab.isima.fr/mazenovi/2017-F2-Forge.git
```
0. Pousser votre branche de votre repo local sur le repos distant `*`
```
git add .
git commit -m
git push origin reda_youssef
```
0. En consultant votre branche sous gitlab, vous devriez constaté que la date de modification du fichier start est plus acienne que celle de votre compte rendu, porquoi alors que le push de toute votre branche est faite en une seule fois ?
```
git trace les modifications et pas les fichiers
```
0. Supprimer le dossier .git
0. Faire un git status ?