Skip to content

Instantly share code, notes, and snippets.

@fwindpeak
Last active March 6, 2024 06:07
Show Gist options
  • Select an option

  • Save fwindpeak/a83d9e6161b350663f28fea984da668d to your computer and use it in GitHub Desktop.

Select an option

Save fwindpeak/a83d9e6161b350663f28fea984da668d to your computer and use it in GitHub Desktop.
git commit aliases for .bashrc
gitc(){
echo "git commit -m '$1: $2'"
git commit -m "$1: $2"
}
gfix(){
gitc fix "$*"
}
gfeat(){
gitc feat "$*"
}
gchore(){
gitc chore "$*"
}
gperf(){
gitc perf "$*"
}
gstyle(){
gitc style "$*"
}
gdocs(){
gitc docs "$*"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment