Skip to content

Instantly share code, notes, and snippets.

@chris
Created September 9, 2008 22:12
Show Gist options
  • Save chris/9780 to your computer and use it in GitHub Desktop.
Save chris/9780 to your computer and use it in GitHub Desktop.
dwf git script (Done With Feature)
#!/bin/sh -x
# dwf, aka "Done With Feature" script: deletes current branch and puts you back on master
ref=$(git symbolic-ref HEAD 2> /dev/null) || exit 0
CURRENT="${ref#refs/heads/}"
git checkout master
git branch -d ${CURRENT}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment