0

The question is similar to Merging between forks in GitHub. However, my problem is that I want to merge remote branch in the remote repository.

I have been trying to:

git pull <remote_repository>/<remote_branch> master

or

git pull <remote_repository>:<remote_branch> master

but that didn't work.

Community
  • 1
  • 1
tres.14159
  • 850
  • 1
  • 16
  • 26

1 Answers1

0

My jobmate says the solution.

It is:

git pull <remote_name> <remote_branch>

tres.14159
  • 850
  • 1
  • 16
  • 26