From: Ramkumar Ramachandra <artagnon@gmail.com>
To: Git Mailing List <git@vger.kernel.org>
Cc: Junio C Hamano <gitster@pobox.com>,
Jonathan Nieder <jrnieder@gmail.com>,
Joshua Jensen <jjensen@workspacewhiz.com>
Subject: [PATCH 0/2] Eliminate cryptic "needs update" error message
Date: Sun, 26 Sep 2010 20:51:54 +0530 [thread overview]
Message-ID: <1285514516-5112-1-git-send-email-artagnon@gmail.com> (raw)
In-Reply-To: <4C9E07B1.50600@workspacewhiz.com>
Hi Joshua,
Joshua Jensen writes:
> Is there opposition to modernizing this *term* to make it more clear
> based on the porcelain commands being run?
Most porcelain commands already contain checks to specifically prevent
it from displaying this message. See:
cache.h:506:#define REFRESH_IN_PORCELAIN 0x0020 /* user friendly output, not "needs update" */
git-add--interactive.perl:215: ;# ignore 'needs update'
read-cache.c:1109: needs_update_fmt = (in_porcelain ? "M\t%s\n" : "%s: needs update\n");
builtin/add.c:190: refresh_index(&the_index, verbose ? REFRESH_IN_PORCELAIN : REFRESH_QUIET,
builtin/commit.c:284: if (refresh_cache(refresh_flags | REFRESH_IN_PORCELAIN))
builtin/reset.c:326: quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN);
builtin/reset.c:377: quiet ? REFRESH_QUIET : REFRESH_IN_PORCELAIN);
cache.h:506:#define REFRESH_IN_PORCELAIN 0x0020 /* user friendly output, not "needs update" */
read-cache.c:1104: int in_porcelain = (flags & REFRESH_IN_PORCELAIN);
The real problem is with the shell scripts that invoke `git
update-index --refresh` without `-q` and forget to redirect output to
/dev/null. The Git infrastructure thinks update-index is a
non-porcelain: little does it know that update-index being run from a
porcelain-level shell script.
Thank you for reporting this bug.
-- Ram
Ramkumar Ramachandra (2):
sh-setup: Write a new require_clean_work_tree function
Porcelain scripts: Rewrite cryptic "needs update" error message
git-pull.sh | 5 +----
git-rebase--interactive.sh | 16 ++++------------
git-rebase.sh | 14 +-------------
git-sh-setup.sh | 23 +++++++++++++++++++++++
4 files changed, 29 insertions(+), 29 deletions(-)
--
1.7.2.2.409.gdbb11.dirty
next prev parent reply other threads:[~2010-09-26 15:23 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-09-25 5:18 What exactly does 'needs update' mean? Joshua Jensen
2010-09-25 6:06 ` Junio C Hamano
2010-09-25 14:16 ` Joshua Jensen
2010-09-25 14:31 ` Joshua Jensen
2010-09-26 15:21 ` Ramkumar Ramachandra [this message]
2010-09-26 15:21 ` [PATCH 1/2] sh-setup: Write a new require_clean_work_tree function Ramkumar Ramachandra
2010-09-26 16:28 ` Matthieu Moy
2010-09-26 17:39 ` Ramkumar Ramachandra
2010-09-26 18:46 ` Matthieu Moy
2010-09-26 18:51 ` Ramkumar Ramachandra
2010-09-26 15:21 ` [PATCH 2/2] Porcelain scripts: Rewrite cryptic "needs update" error message Ramkumar Ramachandra
2010-09-26 16:31 ` Matthieu Moy
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=1285514516-5112-1-git-send-email-artagnon@gmail.com \
--to=artagnon@gmail.com \
--cc=git@vger.kernel.org \
--cc=gitster@pobox.com \
--cc=jjensen@workspacewhiz.com \
--cc=jrnieder@gmail.com \
/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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).