From: rhatto Date: Fri, 4 Apr 2014 16:34:22 +0000 (-0300) Subject: Adding "commit" action which is a wrapper around "git commit" X-Git-Tag: 0.3.4~16 X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=9c18956f82916ff9da2e6a718d2ae208778dab76;p=keyringer.git Adding "commit" action which is a wrapper around "git 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 $*