2017-10-14 09:47:18 +02:00

11 lines
174 B
Fish
Executable File

function g
# shortcut to git
# If no arguments are given, run git status and git l
if count $argv >/dev/null
git $argv
else
git status
git l -5
end
end