dotfiles/shells/fish/functions/g.fish

28 lines
284 B
Fish
Raw Normal View History

2016-04-21 22:38:34 +02:00
function g
2017-10-15 16:49:01 +02:00
git $argv
end
function gst
git status $argv
end
function gcom
git commit $argv
end
function gad
git add $argv
end
function gup
git push $argv
end
function gdo
git pull $argv
end
function gdif
git diff $argv
2016-04-21 22:38:34 +02:00
end