Skip to content

Instantly share code, notes, and snippets.

@tszarzynski
Created July 29, 2013 16:26
Show Gist options
  • Save tszarzynski/6105579 to your computer and use it in GitHub Desktop.
Save tszarzynski/6105579 to your computer and use it in GitHub Desktop.
Git console helpers
gf() {
git commit -a -m "fixes $1"
}
gci() {
git commit -a -m "$1"
}
gco() {
git checkout "$1"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment