From 5e4b71d9682772d82d4e43eefa73743b2a2704cd Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Thu, 13 Aug 2020 14:43:42 -0700 Subject: [PATCH] git: Fix merging bug in fetch-branch --- bin/git-fetch-branch | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/git-fetch-branch b/bin/git-fetch-branch index 668c298..9e33d24 100755 --- a/bin/git-fetch-branch +++ b/bin/git-fetch-branch @@ -23,4 +23,4 @@ case "$#" in *) usage ;; esac -exec git fetch "${remote}" "${branch}" +exec git fetch "${remote}" "${branch}:${branch}"