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
20
pages.fr/common/git-commit.md
Normal file
20
pages.fr/common/git-commit.md
Normal file
@@ -0,0 +1,20 @@
|
||||
# git commit
|
||||
|
||||
> Commit les fichers dans le repository.
|
||||
> Plus d'informations : <https://git-scm.com/docs/git-commit>.
|
||||
|
||||
- Commit les fichiers en stage dans le dépôt avec un message :
|
||||
|
||||
`git commit -m {{message}}`
|
||||
|
||||
- Commit tous les fichiers modifiés avec un message :
|
||||
|
||||
`git commit -a -m {{message}}`
|
||||
|
||||
- Mets à jour le dernier commit avec les modifications en stage :
|
||||
|
||||
`git commit --amend`
|
||||
|
||||
- Commit seulement les fichiers spécifiés (qui sont déjà en stage) :
|
||||
|
||||
`git commit {{path/to/my/file1}} {{path/to/my/file2}}`
|
Reference in New Issue
Block a user