when I execute the command:
git branch -r, it's show just:
origin/HEAD -> origin/master
origin/development-elton
origin/master
And when execute the command:
git remote show origin, it's show:
remote origin
Fetch URL: [email protected]:r2a_/grconsig.git
Push URL: [email protected]:r2a_/grconsig.git
HEAD branch: master
Remote branches:
caio-dev new (next fetch will store in remotes/origin)
controle-usuario new (next fetch will store in remotes/origin)
development-elton tracked
master tracked
rails-admin new (next fetch will store in remotes/origin)
**refinancy new (next fetch will store in remotes/origin)**
How make for pull the branch refinancy for my local?
[remote "origin"]
I was able togit fetch --all
my branches from Gitlab. Some explanations can be found here: gitguys.com/topics/… – Ingrain