aboutsummaryrefslogtreecommitdiff
path: root/git-commit.sh
diff options
context:
space:
mode:
authorJosh Triplett <josh@freedesktop.org>2007-07-14 01:05:43 -0700
committerJunio C Hamano <gitster@pobox.com>2007-07-14 01:07:44 -0700
commit9d6f220cc8ffbd71b4c68765b52c3a7c41dd729b (patch)
tree618f04c4e0ebf509fc817a1e5c767c7f1d38ea9b /git-commit.sh
parentbdecd9d41b3528e17aea2290344c584412e2424e (diff)
downloadgit-9d6f220cc8ffbd71b4c68765b52c3a7c41dd729b.tar.gz
git-9d6f220cc8ffbd71b4c68765b52c3a7c41dd729b.tar.xz
Remove useless uses of cat, and replace with filename arguments
Replace uses of cat that do nothing but writing the contents of a single file to another command via pipe. [jc: Original patch from Josh was somewhat buggy and rewrote "cat $file | wc -l" to "wc -l $file", but this one should be Ok.] Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'git-commit.sh')
-rwxr-xr-xgit-commit.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-commit.sh b/git-commit.sh
index f3cd8ee97..3f3de1729 100755
--- a/git-commit.sh
+++ b/git-commit.sh
@@ -593,7 +593,7 @@ then
tree=$(GIT_INDEX_FILE="$TMP_INDEX" git write-tree) &&
rm -f "$TMP_INDEX"
fi &&
- commit=$(cat "$GIT_DIR"/COMMIT_MSG | git commit-tree $tree $PARENTS) &&
+ commit=$(git commit-tree $tree $PARENTS <"$GIT_DIR/COMMIT_MSG") &&
rlogm=$(sed -e 1q "$GIT_DIR"/COMMIT_MSG) &&
git update-ref -m "$GIT_REFLOG_ACTION: $rlogm" HEAD $commit "$current" &&
rm -f -- "$GIT_DIR/MERGE_HEAD" "$GIT_DIR/MERGE_MSG" &&