Skip to content
Snippets Groups Projects
Commit 48e877b8 authored by Olivier Maury's avatar Olivier Maury
Browse files

Merge branch '12-precisions-annulations' into 'main'

Préciser les commandes d'annulation

Closes #12

See merge request git-gitlab-paca/support-de-formation!15
parents f1453ae2 699edc47
No related branches found
No related tags found
No related merge requests found
......@@ -270,13 +270,38 @@ git diff
---vertical---
Si l'on souhaite supprimer **toutes** les modifications non commitées
Pour annuler les modifications non commitées et indexées.
```bash
git reset -- mon_fichier.txt
```
---vertical---
Pour annuler les modifications non commitées et non indexées (retrouver le fichier de l'index ou d'un autre commit).
```bash
git checkout -- mon_fichier.txt
# ou
git restore mon_fichier.txt
```
Note:
- [Reset, restore and revert](https://git-scm.com/docs/git#_reset_restore_and_revert)
- pour `checkout` : https://git-scm.com/book/fr/v2/Les-bases-de-Git-Annuler-des-actions#_r%C3%A9initialiser_un_fichier_modifi%C3%A9
- pour `restore` : https://git-scm.com/book/fr/v2/Les-bases-de-Git-Annuler-des-actions#undoing_git_restore
---vertical---
Pour désindexer un fichier modifié et indexé.
```bash
git restore --staged mon_fichier.txt
```
Note:
Désindexer (*unstage*) c'est passer de l'indexe (*Staging area*) ([diapo 3](https://git-gitlab-paca.pages.mia.inra.fr/support-de-formation/01_initiation/#/3)) au dossier de travail (*Working directory*), soit l'inverse de `git add`. Il n'y a pas encore eu de commit.
---vertical---
# Grouper un commit avec un commit précédent
......
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