Created
February 11, 2014 09:25
-
-
Save jjhamshaw/8931729 to your computer and use it in GitHub Desktop.
remove deleted remote branches
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
# Option 1) remove deleted branches on fetch | |
git fetch --prune | |
# Option 2) create an alias. Open your config file... | |
git config -e | |
# ...and add the following section | |
[alias] | |
pfetch = fetch --prune |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment