Removed useless git alias

This commit is contained in:
Marko Korhonen 2020-01-21 19:18:05 +02:00
parent c702f4cd6a
commit fbbc89f2cd

View file

@ -1,12 +1,3 @@
# signoff every commit
git() {
if [[ "$1" == "commit" && $# -eq 1 ]]; then
/usr/bin/git commit -S -s
else
/usr/bin/git $@
fi
}
# git shorthands
alias gc='git commit'
alias gac='ga && gc'