Removed useless git alias

This commit is contained in:
Marko Korhonen 2020-01-21 19:18:05 +02:00
parent 25f97cdc3c
commit 866d1590bc
No known key found for this signature in database
GPG key ID: 911B85FBC6003FE5

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'