Last active
February 1, 2018 17:38
-
-
Save chris-brown/89c06a7dbdd804c05ded7f50c91fb426 to your computer and use it in GitHub Desktop.
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
# Dev Cheat sheet | |
> Just a dumping groud to store useful things. | |
### git alias's | |
1. deletes all local merged branches | |
`[alias] | |
dd = "!git branch -d $(git branch --merged | grep -v master | tr -d ' ')" | |
dc = "!git branch --merged | grep -v master | tr -d ' '" | |
open = "!start chrome $(git remote get-url origin)"` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment