git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec
@ 2022-05-01 12:29 Chris Down
  2022-05-02  5:50 ` Bagas Sanjaya
  0 siblings, 1 reply; 4+ messages in thread
From: Chris Down @ 2022-05-01 12:29 UTC (permalink / raw)
  To: git; +Cc: Christian Couder, Johannes Schindelin, Junio C Hamano

Commit 73c6de06aff8 ("bisect: don't use invalid oid as rev when
starting") changes the behaviour to consider invalid oids as pathspecs
again, as in the old shell implementation.

While that behaviour may be desirable, it can also cause confusion. For
example, while bisecting in a particular repo I encountered this:

    $ git bisect start d93ff48803f0 v6.3
    $

...which led to me sitting for a few moments, wondering why there's no
printout stating the first rev to check.

It turns out that the tag was actually "6.3", not "v6.3", and thus the
bisect was still silently started with only a bad rev, because
d93ff48803f0 was a valid oid and "v6.3" was silently considered to be a
pathspec.

While this behaviour may be desirable, it can be confusing, especially
with different repo conventions either using or not using "v" before
release names, or when a branch name or tag is simply misspelled on the
command line.

In order to avoid this, emit a warning when we are assuming an argument
is a pathspec, but no such path exists in the checkout and this doesn't
look like a pathspec according to looks_like_pathspec:

    $ git bisect start d93ff48803f0 v6.3
    warning: assuming 'v6.3' is a path
    $

If the filename is after the double dash, assume the user knows what
they're doing, just like with other git commands.

Signed-off-by: Chris Down <chris@chrisdown.name>
---
 builtin/bisect--helper.c    |  4 ++++
 cache.h                     |  1 +
 setup.c                     |  2 +-
 t/t6030-bisect-porcelain.sh | 18 ++++++++++++++++++
 4 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/builtin/bisect--helper.c b/builtin/bisect--helper.c
index 8b2b259ff0..30a73e2a7d 100644
--- a/builtin/bisect--helper.c
+++ b/builtin/bisect--helper.c
@@ -682,6 +682,10 @@ static enum bisect_error bisect_start(struct bisect_terms *terms, const char **a
 			die(_("'%s' does not appear to be a valid "
 			      "revision"), arg);
 		} else {
+			if (!has_double_dash &&
+			    !looks_like_pathspec(arg) &&
+			    !check_filename(NULL, arg))
+				warning(_("assuming '%s' is a path"), arg);
 			break;
 		}
 	}
diff --git a/cache.h b/cache.h
index 6226f6a8a5..bae92859a3 100644
--- a/cache.h
+++ b/cache.h
@@ -648,6 +648,7 @@ void verify_filename(const char *prefix,
 		     int diagnose_misspelt_rev);
 void verify_non_filename(const char *prefix, const char *name);
 int path_inside_repo(const char *prefix, const char *path);
+int looks_like_pathspec(const char *arg);
 
 #define INIT_DB_QUIET 0x0001
 #define INIT_DB_EXIST_OK 0x0002
diff --git a/setup.c b/setup.c
index a7b36f3ffb..bafbfb0d5e 100644
--- a/setup.c
+++ b/setup.c
@@ -208,7 +208,7 @@ static void NORETURN die_verify_filename(struct repository *r,
  * but which look sufficiently like pathspecs that we'll consider
  * them such for the purposes of rev/pathspec DWIM parsing.
  */
-static int looks_like_pathspec(const char *arg)
+int looks_like_pathspec(const char *arg)
 {
 	const char *p;
 	int escaped = 0;
diff --git a/t/t6030-bisect-porcelain.sh b/t/t6030-bisect-porcelain.sh
index 5382e5d216..2ea50f4ba4 100755
--- a/t/t6030-bisect-porcelain.sh
+++ b/t/t6030-bisect-porcelain.sh
@@ -1025,4 +1025,22 @@ test_expect_success 'bisect visualize with a filename with dash and space' '
 	git bisect visualize -p -- "-hello 2"
 '
 
+test_expect_success 'bisect warning on implicit enoent pathspec' '
+	git bisect reset &&
+	git bisect start "$HASH4" doesnotexist 2>output &&
+	grep -F "assuming '\''doesnotexist'\'' is a path" output
+'
+
+test_expect_success 'bisect fatal on implicit enoent pathspec with dash' '
+	git bisect reset &&
+	test_must_fail git bisect start "$HASH4" doesnotexist -- dne2 2>output &&
+	grep -F "'\''doesnotexist'\'' does not appear to be a valid revision" output
+'
+
+test_expect_success 'bisect no warning on explicit enoent pathspec' '
+	git bisect reset &&
+	git bisect start "$HASH4" -- doesnotexist 2>output &&
+	[ -z "$(cat output)" ]
+'
+
 test_done
-- 
2.36.0


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

* Re: [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec
  2022-05-01 12:29 [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec Chris Down
@ 2022-05-02  5:50 ` Bagas Sanjaya
  2022-05-02  6:22   ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Bagas Sanjaya @ 2022-05-02  5:50 UTC (permalink / raw)
  To: Chris Down, git; +Cc: Christian Couder, Johannes Schindelin, Junio C Hamano

On 5/1/22 19:29, Chris Down wrote:
> In order to avoid this, emit a warning when we are assuming an argument
> is a pathspec, but no such path exists in the checkout and this doesn't
> look like a pathspec according to looks_like_pathspec:
> 
>     $ git bisect start d93ff48803f0 v6.3
>     warning: assuming 'v6.3' is a path
>     $
> 

For completeness, we can say 'If this is incorrect, abort the current
bisection with "git bisect reset" and rerun with correct commit-ish.'.

-- 
An old man doll... just what I always wanted! - Clara

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

* Re: [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec
  2022-05-02  5:50 ` Bagas Sanjaya
@ 2022-05-02  6:22   ` Junio C Hamano
  2022-05-03 18:51     ` Chris Down
  0 siblings, 1 reply; 4+ messages in thread
From: Junio C Hamano @ 2022-05-02  6:22 UTC (permalink / raw)
  To: Bagas Sanjaya; +Cc: Chris Down, git, Christian Couder, Johannes Schindelin

Bagas Sanjaya <bagasdotme@gmail.com> writes:

> On 5/1/22 19:29, Chris Down wrote:
>> In order to avoid this, emit a warning when we are assuming an argument
>> is a pathspec, but no such path exists in the checkout and this doesn't
>> look like a pathspec according to looks_like_pathspec:
>> 
>>     $ git bisect start d93ff48803f0 v6.3
>>     warning: assuming 'v6.3' is a path
>>     $
>> 
>
> For completeness, we can say 'If this is incorrect, abort the current
> bisection with "git bisect reset" and rerun with correct commit-ish.'.

We certainly can, but I am not sure how much it helps.

Even though I understand that the original end-user confusion
happened to come from taking what the user thought was a revision as
pathspec, I think it is a mistake to build the "warning" UI around
it.

Stepping back a bit, there are "git bisect" invocations that compute
and check out the commit to be tested, and there are "git bisect"
invocations that only advance the internal state a bit but not yet
become ready to offer the first commit to be tested.  The problem in
the current UI is that we are fairly chatty once we start bisecting,
but until we receive enough information to start bisecting, we are
fairly silent.

Even if the user did not use the lazy short-hand form of "bisect
start" with bad and good commits at all, after saying "git bisect
good <X>" (read: it is a state that made a bit of progress but still
not ready, because the command wants to see at least one bad commit,
too), wouldn't it be nice if the user is told what state the command
is in?  Perhaps we can give some feedback _before_ we are ready to
compute bisection?

A model dialogue may go like this.

    $ git bisect start -- bin/
    info: bisect waiting for good and bad commits.
    $ git bisect good master
    info: bisect waiting for a bad commit, one good commit known.
    $ git bisect good maint
    info: bisect waiting for a bad commit, two good commits known.
    $ git bisect bad next
    Bisecting: ...

Then the exchange for the lazy short-hand form of "bisect start"
would fall out quite naturally.

    $ git bisect start d93ff48803f0 -- v6.3
    info: bisect waiting for a good commit, one bad commit known.

For a bonus point, we may want to also say something on these
"info:" lines that we were given a pathspec.

It would also be a good idea to add a new subcommand "git bisect status"
to recompute the state (i.e. what it is waiting for and what it
already knows) when the user forgets, which can happen quite often.

With such a bonus feature, the exchange might go like this:

    $ git bisect start seen
    info: bisect waiting for a good commit, a bad commit known.
    $ git reset --hard maint ;# choose an older point, hoping it is good.
    $ make test
    ... pages of output scrolls the "info:" out of window ...
    $ git bisect status
    info: bisect waiting for a good commit, a bad commit known.
    $ git bisect bad maint
    info: bisect waiting for a good commit, a bad commit known.
    $ git reset --hard v1.0 ;# an even older point, hoping it is good.
    $ make test
    ... again pages of output ...
    $ git bisect good v1.0
    Bisecting ...

Hmm?

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

* Re: [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec
  2022-05-02  6:22   ` Junio C Hamano
@ 2022-05-03 18:51     ` Chris Down
  0 siblings, 0 replies; 4+ messages in thread
From: Chris Down @ 2022-05-03 18:51 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Bagas Sanjaya, git, Christian Couder, Johannes Schindelin

Junio C Hamano writes:
>A model dialogue may go like this.
>
>    $ git bisect start -- bin/
>    info: bisect waiting for good and bad commits.
>    $ git bisect good master
>    info: bisect waiting for a bad commit, one good commit known.
>    $ git bisect good maint
>    info: bisect waiting for a bad commit, two good commits known.
>    $ git bisect bad next
>    Bisecting: ...
>
>Then the exchange for the lazy short-hand form of "bisect start"
>would fall out quite naturally.
>
>    $ git bisect start d93ff48803f0 -- v6.3
>    info: bisect waiting for a good commit, one bad commit known.
>
>For a bonus point, we may want to also say something on these
>"info:" lines that we were given a pathspec.
>
>It would also be a good idea to add a new subcommand "git bisect status"
>to recompute the state (i.e. what it is waiting for and what it
>already knows) when the user forgets, which can happen quite often.

Sounds good.

>With such a bonus feature, the exchange might go like this:
>
>    $ git bisect start seen
>    info: bisect waiting for a good commit, a bad commit known.
>    $ git reset --hard maint ;# choose an older point, hoping it is good.
>    $ make test
>    ... pages of output scrolls the "info:" out of window ...
>    $ git bisect status
>    info: bisect waiting for a good commit, a bad commit known.
>    $ git bisect bad maint
>    info: bisect waiting for a good commit, a bad commit known.
>    $ git reset --hard v1.0 ;# an even older point, hoping it is good.
>    $ make test
>    ... again pages of output ...
>    $ git bisect good v1.0
>    Bisecting ...
>
>Hmm?

I'll wait a few days to see if anyone else has any other feedback, and then 
I'll send a patch to that effect.

Thanks!

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

end of thread, other threads:[~2022-05-03 18:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-01 12:29 [PATCH] bisect--helper: warn if we are assuming an unlikely pathspec Chris Down
2022-05-02  5:50 ` Bagas Sanjaya
2022-05-02  6:22   ` Junio C Hamano
2022-05-03 18:51     ` Chris Down

Code repositories for project(s) associated with this public inbox

	https://80x24.org/mirrors/git.git

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 read-only IMAP folder(s) and NNTP newsgroup(s).