We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f111a3a commit b8f4a11Copy full SHA for b8f4a11
git-save
@@ -0,0 +1,12 @@
1
+#!/bin/bash
2
+
3
+# To be used with the git-save-* scripts @ https://github.com/jwiegley/git-scripts
4
+mypath=$(dirname $0)
5
+name="$1"
6
+shift
7
+if [ -x $mypath/git-save-$name ] ; then
8
+ exec git save-"$name" "$@"
9
+else
10
+ echo "usage: git save <command>"
11
+ git save- 2>&1 |grep -vE "'save-'|save$" 1>&2
12
+fi
0 commit comments