diff options
author | Luke Diamand <luke@diamand.org> | 2020-09-19 10:54:41 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-09-19 22:44:55 +0200 |
commit | 0acbf5997fa26747aec544d2ef6a27e4feb75e81 (patch) | |
tree | bbaad706fe41e9d78a85b24fd42b87511f5ba0ad /git-p4.py | |
parent | git-p4 unshelve: adding a commit breaks git-p4 unshelve (diff) | |
download | git-0acbf5997fa26747aec544d2ef6a27e4feb75e81.tar.xz git-0acbf5997fa26747aec544d2ef6a27e4feb75e81.zip |
git-p4: use HEAD~$n to find parent commit for unshelve
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>
Diffstat (limited to 'git-p4.py')
-rwxr-xr-x | git-p4.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |