mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-06-05 13:26:01 +02:00
git-status: add French translation (#4622)
This commit is contained in:
parent
9f3f131a8e
commit
7cc20f8258
1 changed files with 21 additions and 0 deletions
21
pages.fr/common/git-status.md
Normal file
21
pages.fr/common/git-status.md
Normal file
|
@ -0,0 +1,21 @@
|
|||
# git status
|
||||
|
||||
> Afficher les changements aux fichier d'un dépôt Git.
|
||||
> Les fichiers changés, ajoutés et supprimés seront comparés au commit où se situe la tête.
|
||||
> Plus d'informations: <https://git-scm.com/docs/git-status>.
|
||||
|
||||
- Afficher les fichiers changés qui n'ont pas été ajouté dans le *stage*:
|
||||
|
||||
`git status`
|
||||
|
||||
- Afficher le résultat de façon conci[s]e:
|
||||
|
||||
`git status -s`
|
||||
|
||||
- Afficher seulement les changements de fichiers suivi:
|
||||
|
||||
`git status --untracked-files=no`
|
||||
|
||||
- Montrer le résultat de façon conci[s]e avec de l'information sur la [b]ranche:
|
||||
|
||||
`git status -sb`
|
Loading…
Add table
Reference in a new issue