diff --git a/includes/bash_functions.bash b/includes/bash_functions.bash index 880244b..c694818 100644 --- a/includes/bash_functions.bash +++ b/includes/bash_functions.bash @@ -165,7 +165,7 @@ function git-fork() { function git-upstream() { branch=${1-master} git fetch upstream - git co origin $branch + git checkout $branch git merge upstream/$branch }