2017-10-15 20:50:00 +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