Skip to content

Commit b8f4a11

Browse files
committed
Added git-save "front end", from Taylor Carpenter
1 parent f111a3a commit b8f4a11

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

git-save

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)