Files
tldr/pages.uk/common/git-status.md

22 lines
857 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# git status
> Показує зміни до файлів у Git-репозиторії.
> Списки змінених, доданих та видалених файлів в порівнянні до поточного зареєстрованого коміту.
> Більше інформації: <https://git-scm.com/docs/git-status>.
- Показує змінені файли які ще не додані до коміту:
`git status`
- Виводить інформацію у стислому ([s]hort) форматі:
`git status -s`
- Виводить інформацію без неконтрольованих файлів:
`git status --untracked-files=no`
- Виводить інформацію у стислому ([s]hort) форматі разом з інформацією про гілку ([b]ranch):
`git status -sb`