dotfiles/fish/.config/fish/functions/g.fish

8 lines
73 B
Fish
Raw Normal View History

2018-07-22 19:39:58 +00:00
function g
if count $argv > /dev/null
git $argv
else
git status
end
end