aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2016-06-29 09:27:23 +1200
committerTom Ryder <tom@sanctum.geek.nz>2016-06-29 09:27:23 +1200
commitb4763b6ad2d62de3c63eae588940adca01231df3 (patch)
treefde8be256cb6c6051332b6ad523bbbbb8fb431cf /bin
parentRemove GitHub-style Markdown fenced code block (diff)
downloaddotfiles-b4763b6ad2d62de3c63eae588940adca01231df3.tar.gz
dotfiles-b4763b6ad2d62de3c63eae588940adca01231df3.zip
Add jfc(1)
Diffstat (limited to 'bin')
-rwxr-xr-xbin/jfc7
1 files changed, 7 insertions, 0 deletions
diff --git a/bin/jfc b/bin/jfc
new file mode 100755
index 00000000..cb032a5c
--- /dev/null
+++ b/bin/jfc
@@ -0,0 +1,7 @@
+#!/bin/sh
+
+# jfc(1) -- Just add everything to a Git repository and quietly commit with a
+# stock message
+
+git add --all
+git commit --message 'Committed by jfc(1)' --quiet