Difference between revisions of "Git/status"
< Git
Jump to navigation
Jump to search
m (disambiguation) |
(pathspec, and git-scm) |
||
Line 1: | Line 1: | ||
==About== | ==About== | ||
'''git status''' shows the status of the current repository. It first lists which files have been changed, and then also shows a list of any new files that are neither excluded (via [[.gitignore]]) nor in the repository. | '''git status''' shows the status of the current repository. It first lists which files have been changed, and then also shows a list of any new files that are neither excluded (via [[.gitignore]]) nor in the repository. | ||
+ | |||
+ | Related: | ||
+ | * {{l/same|pathspec}} | ||
==Reference== | ==Reference== | ||
* {{l/manpage|git-status|manpage @ HTYP}} | * {{l/manpage|git-status|manpage @ HTYP}} | ||
+ | * [https://git-scm.com/docs/git-status manpage @ git-scm]: more thorough |
Revision as of 12:35, 6 November 2018
About
git status shows the status of the current repository. It first lists which files have been changed, and then also shows a list of any new files that are neither excluded (via .gitignore) nor in the repository.
Related:
Reference
- manpage @ HTYP
- manpage @ git-scm: more thorough