From 7a32d3bce14d4a4235a1c7166b0c71bcd90bd969 Mon Sep 17 00:00:00 2001 From: Rico Ullmann Date: Sat, 15 Jul 2017 15:50:08 +0200 Subject: [PATCH] add gitc function --- functions/gitc.fish | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 functions/gitc.fish diff --git a/functions/gitc.fish b/functions/gitc.fish new file mode 100644 index 0000000..dc578b2 --- /dev/null +++ b/functions/gitc.fish @@ -0,0 +1,3 @@ +function gitc --description 'git commit with signing' + command git commit -S -m "$argv" +end