diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-20 21:20:41 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-06-20 21:20:41 -0700 |
commit | 0795495388d703dc84110a9a7917dd6ec9516bb4 (patch) | |
tree | fff44be6135bcc2862b2dae94b09eaa07e33e2ab /git-commit-script | |
parent | Add "-q" flag to git-update-cache (diff) | |
download | tgif-0795495388d703dc84110a9a7917dd6ec9516bb4.tar.xz |
Let "git commit" take arguments for files to commit.
It does a "git-update-cache" on the arguments, meaning that you can
commit files without doing a separate "git-update-cache". This commit
was done with
git commit git-commit-script
for example.
Diffstat (limited to 'git-commit-script')
-rwxr-xr-x | git-commit-script | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/git-commit-script b/git-commit-script index 5e5c0ccb3a..57f5333db8 100755 --- a/git-commit-script +++ b/git-commit-script @@ -4,6 +4,7 @@ if [ ! -d $GIT_DIR ]; then echo Not a git directory 1>&2 exit 1 fi +git-update-cache -q --refresh -- "$@" || exit 1 PARENTS="-p HEAD" if [ ! -r $GIT_DIR/HEAD ]; then if [ -z "$(git-ls-files)" ]; then |