mirror of
https://github.com/tldr-pages/tldr.git
synced 2025-04-23 00:42:08 +02:00

* git-send-email: add it translation * git-shortlog: add it translation * git-show-branch: add it translation * git-show-ref: add it translation * git-show: add it translation * git-svn: add it translation * git-sizer: add it translation * git-stage: add it translation * git-status: add it translation * git-stash: add it translation * git-submodule: add it translation * git-subtree: add it translation * git-switch: add it translation * git-tag: add it translation * git-update-ref: add it translation * git-worktree: add it translation * Use snake case for tokens
21 lines
499 B
Markdown
21 lines
499 B
Markdown
# git status
|
|
|
|
> Mostra le modifiche ai file in un repository git.
|
|
> Elenca i file modificati, aggiunti e cancellati rispetto al commit corrente.
|
|
> Maggiori informazioni: <https://git-scm.com/docs/git-status>.
|
|
|
|
- Mostra i file modificati che non sono stati ancora committati:
|
|
|
|
`git status`
|
|
|
|
- Mostra l'output in formato ridotto:
|
|
|
|
`git status -s`
|
|
|
|
- Nascondi i file non tracciati dall'output:
|
|
|
|
`git status --untracked-files=no`
|
|
|
|
- Mostra informazioni sul ramo ed in formato ridotto:
|
|
|
|
`git status -sb`
|