mv: move submodules using a gitfile
commita88c915de9886fe17005a5daff4900ced0ea76ad
authorJens Lehmann <Jens.Lehmann@web.de>
Tue, 30 Jul 2013 19:50:03 +0000 (30 21:50 +0200)
committerJunio C Hamano <gitster@pobox.com>
Tue, 30 Jul 2013 20:52:53 +0000 (30 13:52 -0700)
tree3a969c58914c856210aa9e4770c66d2e7959a316
parent11502468287fdd62a22c43766881d21ab4fcf31c
mv: move submodules using a gitfile

When moving a submodule which uses a gitfile to point to the git directory
stored in .git/modules/<name> of the superproject two changes must be made
to make the submodule work: the .git file and the core.worktree setting
must be adjusted to point from work tree to git directory and back.

Achieve that by remembering which submodule uses a gitfile by storing the
result of read_gitfile() of each submodule. If that is not NULL the new
function connect_work_tree_and_git_dir() is called after renaming the
submodule's work tree which updates the two settings to the new values.

Extend the man page to inform the user about that feature (and while at it
change the description to not talk about a script anymore, as mv is a
builtin for quite some time now).

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