From 9c18956f82916ff9da2e6a718d2ae208778dab76 Mon Sep 17 00:00:00 2001 From: rhatto Date: Fri, 4 Apr 2014 13:34:22 -0300 Subject: Adding "commit" action which is a wrapper around "git commit" --- ChangeLog | 4 +++- lib/keyringer/actions/commit | 10 ++++++++++ 2 files changed, 13 insertions(+), 1 deletion(-) create mode 100755 lib/keyringer/actions/commit diff --git a/ChangeLog b/ChangeLog index c9a9246..9c5a05c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,4 +1,6 @@ -2014-03-27 - Silvio Rhatto +2014-04-04 - Silvio Rhatto + + Adding "commit" action which is a wrapper around "git commit" Align command output diff --git a/lib/keyringer/actions/commit b/lib/keyringer/actions/commit new file mode 100755 index 0000000..47937c2 --- /dev/null +++ b/lib/keyringer/actions/commit @@ -0,0 +1,10 @@ +#!/bin/bash +# +# Git commit wrapper. +# + +# Load functions +LIB="`dirname $0`/../functions" +source "$LIB" || exit 1 + +keyringer_exec git "$BASEDIR" commit $* -- cgit v1.2.3