]> gitweb.fluxo.info Git - keyringer.git/commitdiff
Adding "commit" action which is a wrapper around "git commit"
authorrhatto <rhatto@ratatosk.fluxo.info>
Fri, 4 Apr 2014 16:34:22 +0000 (13:34 -0300)
committerrhatto <rhatto@ratatosk.fluxo.info>
Fri, 4 Apr 2014 16:34:22 +0000 (13:34 -0300)
ChangeLog
lib/keyringer/actions/commit [new file with mode: 0755]

index c9a9246bdb12961b579534ccb0b634b7f754d5bf..9c5a05c9f80a3b037060ca96922079dbbb93823d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,6 @@
-2014-03-27 - Silvio Rhatto <rhatto@riseup.net>
+2014-04-04 - Silvio Rhatto <rhatto@riseup.net>
+
+       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 (executable)
index 0000000..47937c2
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+#
+# Git commit wrapper.
+#
+
+# Load functions
+LIB="`dirname $0`/../functions"
+source "$LIB" || exit 1
+
+keyringer_exec git "$BASEDIR" commit $*