From 3a7e25b9e148b934ea44d3dc2c2cac0a01c96712 Mon Sep 17 00:00:00 2001 From: Rico Ullmann Date: Sat, 15 Jul 2017 22:42:48 +0200 Subject: [PATCH] add gitp and gitpom functions --- functions/gitp.fish | 3 +++ functions/gitpom.fish | 3 +++ 2 files changed, 6 insertions(+) create mode 100644 functions/gitp.fish create mode 100644 functions/gitpom.fish diff --git a/functions/gitp.fish b/functions/gitp.fish new file mode 100644 index 0000000..884eda6 --- /dev/null +++ b/functions/gitp.fish @@ -0,0 +1,3 @@ +function gitp --description 'git pull' + command git pull +end diff --git a/functions/gitpom.fish b/functions/gitpom.fish new file mode 100644 index 0000000..a1079c9 --- /dev/null +++ b/functions/gitpom.fish @@ -0,0 +1,3 @@ +function gitpom --description 'git pull origin master' + command git pull origin master +end