Share your git tricks here.
git push --delete <branch_name>
: Delete remote branch. see: http://stackoverflow.com/questions/2003505/delete-a-git-branch-both-locally-and-remotelygit checkout -b <new_branch_name>
: Create a new branch and check it out in one stepgit merge <branch_name>
: Merge your <branch_name> to your master