From: Luke Diamand Date: Sat, 19 Sep 2020 08:54:41 +0000 (+0100) Subject: git-p4: use HEAD~$n to find parent commit for unshelve X-Git-Tag: v2.29.0-rc0~45^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=0acbf5997fa26747aec544d2ef6a27e4feb75e81;p=thirdparty%2Fgit.git git-p4: use HEAD~$n to find parent commit for unshelve Found-by: Liu Xuhui (Jackson) Signed-off-by: Luke Diamand Signed-off-by: Junio C Hamano --- diff --git a/git-p4.py b/git-p4.py index ca79dc0900..4433ca53de 100755 --- 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 diff --git a/t/t9832-unshelve.sh b/t/t9832-unshelve.sh index feda4499dd..7194fb2855 100755 --- a/t/t9832-unshelve.sh +++ b/t/t9832-unshelve.sh @@ -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" &&