From: Junio C Hamano Date: Thu, 13 Jul 2006 05:51:25 +0000 (-0700) Subject: Fix grammatical error in git-revert X-Git-Tag: v1.4.2-rc1~28 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=869659a6a1010ea0943329113a1de41c38bd4a00;p=git.git Fix grammatical error in git-revert We always talk about "commit xyz". We never talk about "xyz commit", except when we end up talking about a commit as a branch head (notably, I would say "the HEAD commit", or possibly "the top-of-master commit", but here $commit is a SHA1 name, not anything else). Signed-off-by: Linus Torvalds Signed-off-by: Junio C Hamano --- diff --git a/git-revert.sh b/git-revert.sh index de8b5f0f0..2bf35d116 100755 --- a/git-revert.sh +++ b/git-revert.sh @@ -84,7 +84,7 @@ revert) s/^[^ ]* /Revert "/ s/$/"/' echo - echo "This reverts $commit commit." + echo "This reverts commit $commit." test "$rev" = "$commit" || echo "(original 'git revert' arguments: $@)" base=$commit next=$prev