From 0795495388d703dc84110a9a7917dd6ec9516bb4 Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Mon, 20 Jun 2005 21:20:41 -0700 Subject: [PATCH] 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. --- git-commit-script | 1 + 1 file changed, 1 insertion(+) diff --git a/git-commit-script b/git-commit-script index 5e5c0ccb..57f5333d 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 -- 2.11.0