From 48e6840c351edb5e3c4a57ccdeed30e902cbd23c Mon Sep 17 00:00:00 2001 From: Ethan Dalool Date: Wed, 19 Feb 2020 15:08:02 -0800 Subject: [PATCH] Oops, fix rev argument not being used. --- gitcheckup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gitcheckup.py b/gitcheckup.py index 6dd2d26..d2ea5ec 100644 --- a/gitcheckup.py +++ b/gitcheckup.py @@ -72,7 +72,7 @@ def git_merge_base(): return check_output(command) def git_rev_parse(rev): - command = [GIT, 'rev-parse', '@{u}'] + command = [GIT, 'rev-parse', rev] return check_output(command) def git_status():