]> git.ipfire.org Git - thirdparty/git.git/commit - t/t7001-mv.sh
mv: update the path entry in .gitmodules for moved submodules
authorJens Lehmann <Jens.Lehmann@web.de>
Tue, 6 Aug 2013 19:15:11 +0000 (21:15 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 6 Aug 2013 21:10:35 +0000 (14:10 -0700)
commit0656781fadca17cc51fb1c30f265c251ebe12819
treefb523dbf6f695b22ecd39809c18ded669da0715f
parent5fee995244e13fd59500425d49038b00499396f8
mv: update the path entry in .gitmodules for moved submodules

Currently using "git mv" on a submodule moves the submodule's work tree in
that of the superproject. But the submodule's path setting in .gitmodules
is left untouched, which is now inconsistent with the work tree and makes
git commands that rely on the proper path -> name mapping (like status and
diff) behave strangely.

Let "git mv" help here by not only moving the submodule's work tree but
also updating the "submodule.<submodule name>.path" setting from the
.gitmodules file and stage both. This doesn't happen when no .gitmodules
file is found and only issues a warning when it doesn't have a section for
this submodule. This is because the user might just use plain gitlinks
without the .gitmodules file or has already updated the path setting by
hand before issuing the "git mv" command (in which case the warning
reminds him that mv would have done that for him). Only when .gitmodules
is found and contains merge conflicts the mv command will fail and tell
the user to resolve the conflict before trying again.

Also extend the man page to inform the user about this new feature.

Signed-off-by: Jens Lehmann <Jens.Lehmann@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Documentation/git-mv.txt
builtin/mv.c
submodule.c
submodule.h
t/t7001-mv.sh