Skip to content

Commit

Permalink
Merge pull request #703 from divmain/randy3k/pull_fix
Browse files Browse the repository at this point in the history
Fix: pull direction fix
  • Loading branch information
divmain committed Jul 18, 2017
2 parents 7d75188 + f3f46c8 commit 2e5bae0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/git_mixins/remotes.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ def pull(self, remote=None, branch=None, remote_branch=None):
self.git(
"pull",
remote,
branch if not remote_branch else "{}:{}".format(branch, remote_branch)
branch if not remote_branch else "{}:{}".format(remote_branch, branch)
)

def push(self, remote=None, branch=None, force=False, remote_branch=None, set_upstream=False):
Expand Down

0 comments on commit 2e5bae0

Please sign in to comment.