When running the git pull command to pull master:
$ git pull ds master
(Note: ds is the remote repo's alias.)
it pops up the following error:
fatal: couldn't find remote ref master
But as running 'git pull' for a branch 'v1', it works.
$ git pull ds v1
From https://github.com/<UserName>/<Repo's name>
* branch v1 -> FETCH_HEAD
Already up to date.
I'm wondering if this is the case issue, but it isn't because I run the following command to confirm it:
$ git branch -a
master
* v1
remotes/ds/v1
What's the problem? Thanks!