Add French translation for git basic commands (#3483)
* git-add: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-commit: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-push: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-clone: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * git-pull: Add French translation Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com> * Fixex based on PR comments Signed-off-by: Hugo D. (jabesq) <jabesq@gmail.com>
This commit is contained in:

committed by
Starbeamrainbowlabs

parent
954f0e62dc
commit
8ec0c33e44
24
pages.fr/common/git-add.md
Normal file
24
pages.fr/common/git-add.md
Normal file
@@ -0,0 +1,24 @@
|
||||
# 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}}`
|
Reference in New Issue
Block a user