diff options
author | Junio C Hamano <junkio@cox.net> | 2006-07-13 07:51:25 +0200 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2006-07-13 07:51:25 +0200 |
commit | 869659a6a1010ea0943329113a1de41c38bd4a00 (patch) | |
tree | f41bb9b9b2935eb413ab8579ac3f5d8510ac8f51 /git-revert.sh | |
parent | Merge branch 'js/merge-base' (diff) | |
download | git-869659a6a1010ea0943329113a1de41c38bd4a00.tar.xz git-869659a6a1010ea0943329113a1de41c38bd4a00.zip |
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 <torvalds@osdl.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to '')
-rwxr-xr-x | git-revert.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/git-revert.sh b/git-revert.sh index de8b5f0f0f..2bf35d116c 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 |