diff options
| -rw-r--r-- | fish/functions/gco.fish | 4 | ||||
| -rw-r--r-- | fish/functions/stage.fish | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/fish/functions/gco.fish b/fish/functions/gco.fish new file mode 100644 index 0000000..a99e86b --- /dev/null +++ b/fish/functions/gco.fish @@ -0,0 +1,4 @@ +function gco --wraps='git commit' --description 'alias gco git commit' + git commit $argv + +end diff --git a/fish/functions/stage.fish b/fish/functions/stage.fish new file mode 100644 index 0000000..3d8a984 --- /dev/null +++ b/fish/functions/stage.fish @@ -0,0 +1,4 @@ +function stage --wraps='git add' --description 'alias stage git add' + git add $argv + +end |