]> git.ipfire.org Git - thirdparty/git.git/commitdiff
git-p4: use HEAD~$n to find parent commit for unshelve
authorLuke Diamand <luke@diamand.org>
Sat, 19 Sep 2020 08:54:41 +0000 (09:54 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sat, 19 Sep 2020 20:44:55 +0000 (13:44 -0700)
Found-by: Liu Xuhui (Jackson) <Xuhui.Liu@amd.com>
Signed-off-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
git-p4.py
t/t9832-unshelve.sh

index ca79dc09004feddbaec9c7521e5013bc8de3d586..4433ca53de7eff82c29a191019f1b6477f53f3bb 100755 (executable)
--- a/git-p4.py
+++ b/git-p4.py
@@ -4237,7 +4237,7 @@ class P4Unshelve(Command):
         """
 
         for parent in (range(65535)):
-            log = extractLogMessageFromGitCommit("{0}^{1}".format(starting_point, parent))
+            log = extractLogMessageFromGitCommit("{0}~{1}".format(starting_point, parent))
             settings = extractSettingsGitLog(log)
             if 'change' in settings:
                 return settings
index feda4499ddd5a4a0afddce501fafbf590edc35ca..7194fb285566d7863668f8a3c66f7e55536ccb74 100755 (executable)
@@ -80,7 +80,7 @@ EOF
        )
 '
 
-test_expect_failure 'update shelved changelist and re-unshelve' '
+test_expect_success 'update shelved changelist and re-unshelve' '
        test_when_finished cleanup_git &&
        (
                cd "$cli" &&