summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <matt@matthewlemon.com>2022-09-07 09:34:35 +0100
committerMatthew Lemon <matt@matthewlemon.com>2022-09-07 09:34:35 +0100
commit3797efcb3cc612e78ccec84ef56fe40dc24c8bac (patch)
tree761c4da4f4353cece1e76ba25dd6a59c347ff974
parent7594241174d9c8bd3d3dce43d21d9d9ec5b1ddbb (diff)
added push alias
-rw-r--r--fish/functions/push.fish3
1 files changed, 3 insertions, 0 deletions
diff --git a/fish/functions/push.fish b/fish/functions/push.fish
new file mode 100644
index 0000000..636213c
--- /dev/null
+++ b/fish/functions/push.fish
@@ -0,0 +1,3 @@
+function push --description 'alias push=git push'
+ git push $argv;
+end