> 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"
$ 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 .
$ 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.