Created
December 17, 2011 21:19
-
-
Save myusuf3/1491434 to your computer and use it in GitHub Desktop.
Deleting git branches locally and on remote.
This file contains hidden or 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
# deleting a local branch | |
git branch -D bugfix | |
Deleted branch bugfix (was 2a14ef7). | |
# deleting a remote branch | |
git push origin :bugfix | |
To [email protected]:myusuf3/project.git | |
- [deleted] bugfix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment