git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] git-clean: fix the description of the default behavior
@ 2010-02-04 16:01 Michael J Gruber
  2010-02-04 17:15 ` Junio C Hamano
  2010-02-04 21:16 ` Jay Soffian
  0 siblings, 2 replies; 4+ messages in thread
From: Michael J Gruber @ 2010-02-04 16:01 UTC (permalink / raw)
  To: git; +Cc: Junio C Hamano

Currently, when called without -n and -f, git clean issues

fatal: clean.requireForce not set and -n or -f not given; refusing to clean

which leaves the user wondering why force is required when requireForce
is not set. Looking up in git-clean(1) does not help because its
description is wrong.

Change it so that git clean issues

fatal: clean.requireForce defaults to true and -n or -f not given; refusing to clean

in this situation (and "...set to true..." when it is set) which makes
it clearer that an unset config means true here, and adjust the
documentation.

Signed-off-by: Michael J Gruber <git@drmicha.warpmail.net>
---
I'd actually suggest changing "and -n or -f not given" to "and neither -n nor -f given"
in addition to the above, but the above is a real fix, whereas the latter is a style
issue, and we're close to release.

In fact, having a variable where unset means true is rather unfortunate,
but I don't expect that to be changing.

 Documentation/git-clean.txt |    4 ++--
 builtin-clean.c             |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Documentation/git-clean.txt b/Documentation/git-clean.txt
index 335c885..a81cb6c 100644
--- a/Documentation/git-clean.txt
+++ b/Documentation/git-clean.txt
@@ -33,8 +33,8 @@ OPTIONS
 
 -f::
 --force::
-	If the git configuration specifies clean.requireForce as true,
-	'git clean' will refuse to run unless given -f or -n.
+	If the git configuration variable clean.requireForce is not set
+	to false, 'git clean' will refuse to run unless given -f or -n.
 
 -n::
 --dry-run::
diff --git a/builtin-clean.c b/builtin-clean.c
index 3a70fa8..6ad5892 100644
--- a/builtin-clean.c
+++ b/builtin-clean.c
@@ -67,8 +67,8 @@ int cmd_clean(int argc, const char **argv, const char *prefix)
 		die("-x and -X cannot be used together");
 
 	if (!show_only && !force)
-		die("clean.requireForce%s set and -n or -f not given; "
-		    "refusing to clean", config_set ? "" : " not");
+		die("clean.requireForce %s to true and -n or -f not given; "
+		    "refusing to clean", config_set ? "set" : "defaults");
 
 	if (force > 1)
 		rm_flags = 0;
-- 
1.7.0.rc1.199.g9253ab

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clean: fix the description of the default behavior
  2010-02-04 16:01 [PATCH] git-clean: fix the description of the default behavior Michael J Gruber
@ 2010-02-04 17:15 ` Junio C Hamano
  2010-02-04 21:16 ` Jay Soffian
  1 sibling, 0 replies; 4+ messages in thread
From: Junio C Hamano @ 2010-02-04 17:15 UTC (permalink / raw)
  To: Michael J Gruber; +Cc: git, Junio C Hamano

looks sane; thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clean: fix the description of the default behavior
  2010-02-04 16:01 [PATCH] git-clean: fix the description of the default behavior Michael J Gruber
  2010-02-04 17:15 ` Junio C Hamano
@ 2010-02-04 21:16 ` Jay Soffian
  2010-02-05  9:06   ` Michael J Gruber
  1 sibling, 1 reply; 4+ messages in thread
From: Jay Soffian @ 2010-02-04 21:16 UTC (permalink / raw)
  To: Michael J Gruber; +Cc: git, Junio C Hamano

On Thu, Feb 4, 2010 at 11:01 AM, Michael J Gruber
<git@drmicha.warpmail.net> wrote:
> fatal: clean.requireForce defaults to true and -n or -f not given; refusing to clean

Bike shed:

fatal: clean.requireForce defaults to true and neither -n nor -f
given; refusing to clean

j.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] git-clean: fix the description of the default behavior
  2010-02-04 21:16 ` Jay Soffian
@ 2010-02-05  9:06   ` Michael J Gruber
  0 siblings, 0 replies; 4+ messages in thread
From: Michael J Gruber @ 2010-02-05  9:06 UTC (permalink / raw)
  To: Jay Soffian; +Cc: git, Junio C Hamano

Jay Soffian venit, vidit, dixit 04.02.2010 22:16:
> On Thu, Feb 4, 2010 at 11:01 AM, Michael J Gruber
> <git@drmicha.warpmail.net> wrote:
>> fatal: clean.requireForce defaults to true and -n or -f not given; refusing to clean
> 
> Bike shed:
> 
> fatal: clean.requireForce defaults to true and neither -n nor -f
> given; refusing to clean
> 
> j.

Assuming you're not git-am, you do read between "---" and diff, don't
you? ;)

Michael

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-02-05 10:05 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-02-04 16:01 [PATCH] git-clean: fix the description of the default behavior Michael J Gruber
2010-02-04 17:15 ` Junio C Hamano
2010-02-04 21:16 ` Jay Soffian
2010-02-05  9:06   ` Michael J Gruber

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).