summaryrefslogtreecommitdiff
path: root/t/t7112-reset-submodule.sh
diff options
context:
space:
mode:
authorStefan Beller <sbeller@google.com>2017-04-21 17:39:53 (GMT)
committerJunio C Hamano <gitster@pobox.com>2017-04-24 00:32:39 (GMT)
commit35b96d1de8e795aeac8ec281e88e59f2778335e7 (patch)
treefca77e97443fc8540633e1af89169fd210ee185f /t/t7112-reset-submodule.sh
parentf2d48994dc11ba367e92c38c8025c3354418145a (diff)
downloadgit-35b96d1de8e795aeac8ec281e88e59f2778335e7.zip
git-35b96d1de8e795aeac8ec281e88e59f2778335e7.tar.gz
git-35b96d1de8e795aeac8ec281e88e59f2778335e7.tar.bz2
builtin/reset: add --recurse-submodules switch
git-reset is yet another working tree manipulator, which should be taught about submodules. When a user uses git-reset and requests to recurse into submodules, this will reset the submodules to the object name as recorded in the superproject, detaching the HEADs. Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t7112-reset-submodule.sh')
-rwxr-xr-xt/t7112-reset-submodule.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/t/t7112-reset-submodule.sh b/t/t7112-reset-submodule.sh
index 2eda6ad..f86ccdf 100755
--- a/t/t7112-reset-submodule.sh
+++ b/t/t7112-reset-submodule.sh
@@ -5,6 +5,14 @@ test_description='reset can handle submodules'
. ./test-lib.sh
. "$TEST_DIRECTORY"/lib-submodule-update.sh
+KNOWN_FAILURE_SUBMODULE_RECURSIVE_NESTED=1
+KNOWN_FAILURE_DIRECTORY_SUBMODULE_CONFLICTS=1
+KNOWN_FAILURE_SUBMODULE_OVERWRITE_IGNORED_UNTRACKED=1
+
+test_submodule_switch_recursing "git reset --recurse-submodules --keep"
+
+test_submodule_forced_switch_recursing "git reset --hard --recurse-submodules"
+
test_submodule_switch "git reset --keep"
test_submodule_switch "git reset --merge"