зеркало из https://github.com/microsoft/git.git
git-p4: change "commitish" typo to "committish"
This was the only occurrence of "commitish" in the tree, but as the
log will reveal we've had others in the past. Fixes up code added in
00ad6e3182
("git-p4: work with a detached head", 2015-11-21).
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Acked-by: Luke Diamand <luke@diamand.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:
Родитель
7248672947
Коммит
89f32a92b4
|
@ -2099,11 +2099,11 @@ class P4Submit(Command, P4UserMap):
|
|||
|
||||
commits = []
|
||||
if self.master:
|
||||
commitish = self.master
|
||||
committish = self.master
|
||||
else:
|
||||
commitish = 'HEAD'
|
||||
committish = 'HEAD'
|
||||
|
||||
for line in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self.origin, commitish)]):
|
||||
for line in read_pipe_lines(["git", "rev-list", "--no-merges", "%s..%s" % (self.origin, committish)]):
|
||||
commits.append(line.strip())
|
||||
commits.reverse()
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче