create remote git branch
02 Apr 2009
git push origin origin:refs/heads/new_branch
git fetch origin
git checkout --track -b new_branch origin/new_branch
I always forget this. I need a nice post-it for it. git
git push origin origin:refs/heads/new_branch
git fetch origin
git checkout --track -b new_branch origin/new_branch