diff options
author | Linus Torvalds <torvalds@evo.osdl.org> | 2005-07-19 07:20:39 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-07-19 07:20:39 -0400 |
commit | f0b32737ad5a35cc047db47353a75faccfe5939e (patch) | |
tree | 719f329cde82a86b7f37ea83eae5ed6f9fd5d5f6 /git-commit-script | |
parent | 2a9c3fe838a21cb2097347e15bec71e848f8d625 (diff) | |
download | git-f0b32737ad5a35cc047db47353a75faccfe5939e.tar.gz |
Add "git commit --all" since everybody seems to want it.
This replaces
git-diff-files --name-only | xargs git-update-cache
git commit
with a new "--all" argument to "git commit".
Diffstat (limited to 'git-commit-script')
-rwxr-xr-x | git-commit-script | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/git-commit-script b/git-commit-script index c6f8ee2b3d..04d16ae92f 100755 --- a/git-commit-script +++ b/git-commit-script @@ -9,6 +9,7 @@ usage () { die 'git commit [-m existing-commit] [<path>...]' } +files=() while case "$#" in 0) break ;; esac do case "$1" in @@ -19,13 +20,16 @@ do exit ;; esac ;; + --all) + files=($(git-diff-files --name-only))\ + ;; *) break ;; esac shift done -git-update-cache -q --refresh -- "$@" || exit 1 +git-update-cache -q --refresh -- "$@" "${files[@]}" || exit 1 PARENTS="-p HEAD" if [ ! -r "$GIT_DIR/HEAD" ]; then if [ -z "$(git-ls-files)" ]; then |