When I do git status in a subfolder of my repository it includes the status of parent folders also.
Is there a way to constrain git-status to just a particular folder?
|
|
When I do git status in a subfolder of my repository it includes the status of parent folders also. Is there a way to constrain git-status to just a particular folder?
|
||||||||
|
|
|
Some plumbing commands do take a directory as parameter:
would give you all files changed but not updated (not added to stage), or untracked. And that for a directory. As written in this thread, git ls-files does not support a '
So, using commands mentioned here:
would give you both non-added and added files
would give you only non-added files. (while detecting rewrites, renames, copies, ...) As usual with plumbing commands, some scripting is in order ;) |
||
|
|
|
|
When I tried git, I didn't find a way to do that. I ended up doing:
|
||
|
|
|
Imperfect, but this works as well from within the the directory you are interested in: git stats | grep -v ' \.\./' That will hide all directories that would require an upward reference in their relative path. If you want to get color spitting out the other end, set git config color.status always |
||
|
|