I have a remote origin/master and a remote branch remote_branch . I also have a local master and a local branch local_branch . When I try to pull the local master in local_branch using git pull master local_branch , I get this.
fatal: 'master' does not appear to be a git repository fatal: Could not read from remote repository. Please make sure you have the correct access rights and the repository exists.
However, when I do git branch , I see this:
* loca_branch master
Why can't I extract from local master ?
source share