Difference between revisions of "Git/status"
< Git
Jump to navigation
Jump to search
(Created page with "==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 neith...") |
m (disambiguation) |
||
Line 2: | Line 2: | ||
'''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. | ||
==Reference== | ==Reference== | ||
− | * {{l/manpage|git-status|manpage}} | + | * {{l/manpage|git-status|manpage @ HTYP}} |
Revision as of 12:33, 31 October 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.