Git - Thundzz/StackUnderflow GitHub Wiki

Pushing a local branch to origin :

http://stackoverflow.com/questions/3109456/git-push-local-branch-to-origin

machine1$: git push origin testing machine2$: git fetch origin testing machine2$: git checkout -b testing origin/testing

That's it.