Submodules: Add the new "ignore" config option for diff and status
commit6ce977caf5c530ea09c2beafdc995a82d29d4d4d
authorJens Lehmann <Jens.Lehmann@web.de>
Mon, 26 Jul 2010 18:27:50 +0000 (26 20:27 +0200)
committerJohannes Schindelin <johannes.schindelin@gmx.de>
Thu, 29 Jul 2010 13:26:40 +0000 (29 15:26 +0200)
tree233634340fced9adbb26ef01edd3cd3544e22fcb
parentdc0271dff37dbd47cd5a9aa043d74896d85af183
Submodules: Add the new "ignore" config option for diff and status

The new "ignore" config option controls the default behavior for "git
status" and the diff family. It specifies under what circumstances they
consider submodules as modified and can be set separately for each
submodule.

The command line option "--ignore-submodules=" has been extended to accept
the new parameter "none" for both status and diff.

Users that chose submodules to get rid of long work tree scanning times
might want to set the "dirty" option for those submodules. This brings
back the pre 1.7.0 behavior, where submodule work trees were never
scanned for modifications. By using "--ignore-submodules=none" on the
command line the status and diff commands can be told to do a full scan.

This option can be set to the following values (which have the same name
and meaning as for the "--ignore-submodules" option of status and diff):

"all": All changes to the submodule will be ignored.

"dirty": Only differences of the commit recorded in the superproject and
the submodules HEAD will be considered modifications, all changes
to the work tree of the submodule will be ignored. When using this
value, the submodule will not be scanned for work tree changes at
all, leading to a performance benefit on large submodules.

"untracked": Only untracked files in the submodules work tree are ignored,
a changed HEAD and/or modified files in the submodule will mark it
as modified.

"none" (which is the default): Either untracked or modified files in a
submodules work tree or a difference between the subdmodules HEAD
and the commit recorded in the superproject will make it show up
as changed. This value is added as a new parameter for the
"--ignore-submodules" option of the diff family and "git status"
so the user can override the settings in the configuration.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Documentation/config.txt
Documentation/diff-options.txt
Documentation/git-status.txt
diff-lib.c
diff.c
diff.h
submodule.c
submodule.h
t/t4027-diff-submodule.sh
t/t7508-status.sh
wt-status.c