From 7efbb6a7ff2e1340e8ef4655d47d6ff155bda977 Mon Sep 17 00:00:00 2001 From: Marcel Kapfer Date: Sun, 15 Oct 2017 16:49:01 +0200 Subject: [PATCH] fish: added some git aliases --- shells/fish/functions/g.fish | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/shells/fish/functions/g.fish b/shells/fish/functions/g.fish index 4721af5..8abc055 100644 --- a/shells/fish/functions/g.fish +++ b/shells/fish/functions/g.fish @@ -1,3 +1,27 @@ function g - git $argv + 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 end