Oops, fix rev argument not being used.
This commit is contained in:
parent
2b6bbd276e
commit
48e6840c35
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ def git_merge_base():
|
||||||
return check_output(command)
|
return check_output(command)
|
||||||
|
|
||||||
def git_rev_parse(rev):
|
def git_rev_parse(rev):
|
||||||
command = [GIT, 'rev-parse', '@{u}']
|
command = [GIT, 'rev-parse', rev]
|
||||||
return check_output(command)
|
return check_output(command)
|
||||||
|
|
||||||
def git_status():
|
def git_status():
|
||||||
|
|
Loading…
Reference in a new issue