09 11 / 2011
Push new branch to Github
source: http://gitready.com/beginner/2009/02/02/push-and-delete-branches.html
Pushing to remote
git push origin newfeature
add -u for tracking
Two steps involve to remove a branch
1. Remove remote
git push origin :newfeature
2. Remove local
git branch -d newfeature
Permalink 60 notes