I looked at other questions on a similar issue.
But they seem to say that the answer is git fetch --all .
But in my case, this does not work.
Here is what I did for this.
> git branch * master > git branch -r origin/master origin/A > git fetch --all > git branch * master
And I also tried git pull --all , but the result is the same.
------------------- ------------------- Edit
> git pull --all Already up-to-date. > git branch * master
------------------- ------------------- Edit
> git pull origin A * branch A -> FETCH_HEAD Already up-to-date. > git branch * master
source share