diff options
author | Heikki Orsila <heikki.orsila@iki.fi> | 2008-09-13 20:18:36 +0300 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-09-15 23:11:35 -0700 |
commit | f18d244a6356947cf0fb753b43c0d6ac4c7b5637 (patch) | |
tree | 762af65da2b81a3ea8c7c65af65e12bcc0bcdae1 /builtin-rm.c | |
parent | bf55778855c2c95fdc4919a4d42ee68d348b75ef (diff) | |
download | git-f18d244a6356947cf0fb753b43c0d6ac4c7b5637.tar.gz git-f18d244a6356947cf0fb753b43c0d6ac4c7b5637.tar.xz |
Start conforming code to "git subcmd" style part 3
User notifications are presented as 'git cmd', and code comments
are presented as '"cmd"' or 'git's cmd', rather than 'git-cmd'.
Signed-off-by: Heikki Orsila <heikki.orsila@iki.fi>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-rm.c')
-rw-r--r-- | builtin-rm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-rm.c b/builtin-rm.c index 6bd82111d..fdac34f24 100644 --- a/builtin-rm.c +++ b/builtin-rm.c @@ -104,7 +104,7 @@ static int check_local_mod(unsigned char *head, int index_only) "from both the file and the HEAD\n" "(use -f to force removal)", name); else if (!index_only) { - /* It's not dangerous to git-rm --cached a + /* It's not dangerous to "git rm --cached" a * file if the index matches the file or the * HEAD, since it means the deleted content is * still available somewhere. |