I'm trying to push my local branch (Dev) up to my git repo so that when someone else clones the repo, they will have the Dev branch as a local one.
So far, when you clone the repo and run git branch -a
you get this:
master
remotes/origin/Dev
remotes/origin/master
but what I want the person to get is this:
Dev
master
remotes/origin/Dev
remotes/origin/master
I've tried git push --all
but that didn't help. I've tried a few other things but I can't remember them all and I'm willing to try them again.
Also, My Dev local branch tracks to the Dev remote branch.