mirror of
https://github.com/tj/git-extras.git
synced 2026-09-10 07:26:17 -04:00
commit
7d2f933945
|
|
@ -27,8 +27,13 @@ while true; do
|
|||
quit) break;;
|
||||
esac
|
||||
|
||||
# Execute
|
||||
eval git "$cmd"
|
||||
if [[ $cmd == !* ]]; then
|
||||
eval ${cmd:1}
|
||||
elif [[ $cmd == git* ]]; then
|
||||
eval $cmd
|
||||
else
|
||||
eval git "$cmd"
|
||||
fi
|
||||
done
|
||||
|
||||
echo
|
||||
|
|
|
|||
Loading…
Reference in a new issue