diff options
author | Junio C Hamano <junkio@cox.net> | 2005-08-16 18:08:19 -0700 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2005-08-17 12:11:36 -0700 |
commit | 22cff6a5abef29ce74da3e57ba3488d77686fec8 (patch) | |
tree | b52b47f3c07b7d4c648bfdff8aac84bd965cc275 /git-commit-script | |
parent | Pass options to underlying git-rev-list from show-branches. (diff) | |
download | tgif-22cff6a5abef29ce74da3e57ba3488d77686fec8.tar.xz |
git-commit: pass explicit path to git-diff-files.
When running "git commit" with explicit path arguments, allow it to
take directory name. This makes "git commit Documentation/" to commit
everything that is changed under Documentation/ directory.
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-commit-script')
-rwxr-xr-x | git-commit-script | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/git-commit-script b/git-commit-script index 790f07c08f..f6cd75f024 100755 --- a/git-commit-script +++ b/git-commit-script @@ -88,9 +88,14 @@ esac case "$all" in t) git-diff-files --name-only -z | - xargs -0 git-update-cache -q -- || exit 1 ;; -esac -git-update-cache -q --refresh -- "$@" || exit 1 + xargs -0 git-update-cache -q -- + ;; +*) + git-diff-files --name-only -z "$@" | + xargs -0 git-update-cache -q -- + ;; +esac || exit 1 +git-update-cache -q --refresh || exit 1 case "$verify" in t) |