Skip to content

Instantly share code, notes, and snippets.

@chris-brown
Last active February 1, 2018 17:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chris-brown/89c06a7dbdd804c05ded7f50c91fb426 to your computer and use it in GitHub Desktop.
Save chris-brown/89c06a7dbdd804c05ded7f50c91fb426 to your computer and use it in GitHub Desktop.
# 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