diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-14 18:56:05 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-14 18:56:05 -0700 |
commit | 40d8cfe4117564e5520e8f4f953addaa94844476 (patch) | |
tree | 9dd2fb169a2d4a2c0f49bf9537cf9aa314614342 /git-add-script | |
parent | 479346adc5ebb099121063d4c06da30093ed9b3b (diff) | |
download | git-40d8cfe4117564e5520e8f4f953addaa94844476.tar.gz git-40d8cfe4117564e5520e8f4f953addaa94844476.tar.xz |
Trivial git script fixups
Fix permissions, and add trivial "reset" and "add" scripts.
The "reset" script just resets the index back to head, while the "add"
script is just a crutch for people used to do "cvs add".
Diffstat (limited to 'git-add-script')
-rwxr-xr-x | git-add-script | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/git-add-script b/git-add-script new file mode 100755 index 000000000..7726886da --- /dev/null +++ b/git-add-script @@ -0,0 +1,2 @@ +#!/bin/sh +git-update-cache --add "$@" |