Skip to content

Instantly share code, notes, and snippets.

@eldilibra
Created May 2, 2014 22:44
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 eldilibra/11488009 to your computer and use it in GitHub Desktop.
Save eldilibra/11488009 to your computer and use it in GitHub Desktop.
#!/bin/sh
git branch | while read line
do
if [[ "$line" == \** ]];
then
echo "${line:2}"
fi
done
@eldilibra
Copy link
Author

Put this somewhere on your path, then do things like git push origin curbran`` if you want to type a bit less.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment