From: Andreas Ericsson <ae@op5.se>
To: "Shawn O. Pearce" <spearce@spearce.org>
Cc: Junio C Hamano <junkio@cox.net>,
git@vger.kernel.org, Andy Parkins <andyparkins@gmail.com>
Subject: Re: [PATCH 1/2] Suggest use of 'git add' when 'nothing to commit' gets shown.
Date: Fri, 15 Dec 2006 10:11:48 +0100 [thread overview]
Message-ID: <458266D4.5050301@op5.se> (raw)
In-Reply-To: <20061215001350.GA26755@spearce.org>
Shawn O. Pearce wrote:
> else
> if [ -z "$(git-ls-files)" ]; then
> - echo >&2 Nothing to commit
> + echo >&2 "Nothing to commit (use \"git add\" include for commit)"
s/git add include/git add to include/
> exit 1
> fi
> PARENTS=""
> diff --git a/wt-status.c b/wt-status.c
> index 6e9414d..f9ed54f 100644
> --- a/wt-status.c
> +++ b/wt-status.c
> @@ -163,7 +163,7 @@ static void wt_status_print_changed_cb(struct diff_queue_struct *q,
> int i;
> if (q->nr)
> wt_status_print_header("Changed but not updated",
> - "use git-add on files to include for commit");
> + "use \"git add\" on files to include for commit");
Here it's "on files", whereas in other threads people have stated that
git add adds content, so perhaps
use \"git add file1 file2\" to include for commit
which also gives a nice "simplest-possible-usage" message.
> if (!shown_header) {
> wt_status_print_header("Untracked files",
> - "use \"git add\" to add to commit");
> + "use \"git add\" on files to include for commit");
Same here.
> if (!s->commitable)
> - printf("%s\n", s->amend ? "# No changes" : "nothing to commit");
> + printf("%s (use \"git add\" include for commit)\n",
> + s->amend ? "# No changes" : "Nothing to commit");
> }
This is same as first one (missing "to " before "include").
It would probably be nice to use one and the same message everywhere though.
--
Andreas Ericsson andreas.ericsson@op5.se
OP5 AB www.op5.se
next prev parent reply other threads:[~2006-12-15 9:12 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-12-15 0:13 [PATCH 1/2] Suggest use of 'git add' when 'nothing to commit' gets shown Shawn O. Pearce
2006-12-15 9:11 ` Andreas Ericsson [this message]
2006-12-15 15:06 ` Shawn Pearce
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=458266D4.5050301@op5.se \
--to=ae@op5.se \
--cc=andyparkins@gmail.com \
--cc=git@vger.kernel.org \
--cc=junkio@cox.net \
--cc=spearce@spearce.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.