Created
October 10, 2012 16:52
-
-
Save johnpipi/3866860 to your computer and use it in GitHub Desktop.
Git Commands
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Merge and squash commits | |
git checkout master | |
git merge --squash private_feature_branch | |
git commit -v | |
# Remove a tag locally | |
git tag -d mytag | |
# Remove tag remotely | |
git push origin :refs/tags/mytag |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment