1
0
mirror of https://github.com/aquatix/dotfiles.git synced 2025-12-06 20:35:11 +01:00

Fix, should not be an alias, but just a command

This commit is contained in:
Michiel Scholten
2014-12-09 13:08:07 +01:00
parent 536da4b02f
commit b52763c98a

View File

@@ -36,7 +36,7 @@ vercomp () {
vercomp "1.7.11" `git --version|awk '{ print $3 }'`
case $? in
0) op='=';;
1) alias git='git config --global push.default matching';; # op='>';;
1) git config --global push.default matching; git config --global pull.default matching ;; # op='>';;
2) op='<';;
esac