mirror of https://github.com/CrimsonTome/tldr.git
452 B
452 B
git add
Ajoute les fichiers modifiés à l'index. Plus d'informations : https://git-scm.com/docs/git-add.
- Ajouter un ficher à l'index :
git add {{path/to/file}}
- Ajouter tous les fichiers (suivis et non-suivis) :
git add -A
- Ajoute les modifications des fichers déjà suivis :
git add -u
- Ajoute aussi les fichiers ignorés :
git add -f
- Ajoute des parties de fichiers interactivement :
git add -p {{path/to/file}}