Git status: Difference between revisions
Jump to navigation
Jump to search
(Created page with "=Internal= * git Commands =Overview= Shows the working tree status.") |
|||
Line 5: | Line 5: | ||
Shows the working tree status. | Shows the working tree status. | ||
=Empty Directories DO NOT SHOW= | |||
If you create an empty directory, or an empty directory hierarchy, <code>git status</code> does not see them! | |||
You will need to add a file in newly created directory for <code>git status</code> to see it. <code>.gitkeep</code> is a good option. |
Latest revision as of 05:09, 4 July 2021
Internal
Overview
Shows the working tree status.
Empty Directories DO NOT SHOW
If you create an empty directory, or an empty directory hierarchy, git status
does not see them!
You will need to add a file in newly created directory for git status
to see it. .gitkeep
is a good option.