git@vger.kernel.org mailing list mirror (one of many)
 help / color / mirror / code / Atom feed
* [bug?] clean: Demonstrate failure when used with paths
@ 2019-05-31 18:36 Rafael Ascensão
  2019-06-03 19:57 ` Rafael Ascensão
  0 siblings, 1 reply; 3+ messages in thread
From: Rafael Ascensão @ 2019-05-31 18:36 UTC (permalink / raw)
  To: git; +Cc: Rafael Ascensão

---

Yesterday on #git, an user reported the following behaviour of
git clean:

    $ git init
    $ mkdir foo
    $ touch a.txt b.txt bar.txt foo/qux.txt

    $ git clean -f bar.txt foo/qux.txt
    Removing bar.txt

Where the behaviour they expected would be:

    $ git clean -f bar.txt foo/qux.txt
    Removing bar.txt
    Removing foo/qux.txt

Sending this "patch" as an excuse to not forget this bug report.

 t/t7300-clean.sh | 14 ++++++++++++++
 1 file changed, 14 insertions(+)

diff --git a/t/t7300-clean.sh b/t/t7300-clean.sh
index 7b36954d63..eecbd98906 100755
--- a/t/t7300-clean.sh
+++ b/t/t7300-clean.sh
@@ -92,6 +92,20 @@ test_expect_success 'git clean src/ src/' '
 
 '
 
+test_expect_failure 'git clean a.out docs/manual.tmp' '
+	mkdir -p build docs &&
+	touch a.out b.out docs/manual.txt docs/manual.tmp &&
+	git clean a.out docs/manual.tmp &&
+	test -f Makefile &&
+	test -f README &&
+	test ! -f a.out &&
+	test -f b.out &&
+	test -f docs/manual.txt &&
+	test ! -f docs/manual.tmp &&
+	test -f src/part2.c &&
+	test -f src/part1.c
+'
+
 test_expect_success 'git clean with prefix' '
 
 	mkdir -p build docs src/test &&
-- 
2.21.0


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

* Re: [bug?] clean: Demonstrate failure when used with paths
  2019-05-31 18:36 [bug?] clean: Demonstrate failure when used with paths Rafael Ascensão
@ 2019-06-03 19:57 ` Rafael Ascensão
  2019-06-03 20:32   ` Elijah Newren
  0 siblings, 1 reply; 3+ messages in thread
From: Rafael Ascensão @ 2019-06-03 19:57 UTC (permalink / raw)
  To: Git Mailing List; +Cc: Jeff King, newren, sxlijin

I missed this RFC series which fixes this and others issues:
https://public-inbox.org/git/20180405173446.32372-1-newren@gmail.com

Cheers,
Rafael Ascensão

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

* Re: [bug?] clean: Demonstrate failure when used with paths
  2019-06-03 19:57 ` Rafael Ascensão
@ 2019-06-03 20:32   ` Elijah Newren
  0 siblings, 0 replies; 3+ messages in thread
From: Elijah Newren @ 2019-06-03 20:32 UTC (permalink / raw)
  To: Rafael Ascensão; +Cc: Git Mailing List, Jeff King, Samuel Lijin

On Mon, Jun 3, 2019 at 12:58 PM Rafael Ascensão <rafa.almas@gmail.com> wrote:
>
> I missed this RFC series which fixes this and others issues:
> https://public-inbox.org/git/20180405173446.32372-1-newren@gmail.com
>
> Cheers,
> Rafael Ascensão

Yeah, I've had cleaning that patch series up on my TODO list for quite
some time.

My vague recollection was that Peff pointed out a few things to clean
up in my patches, and also highlighted a few extra adjacent issues in
the surrounding underlying code...and when I started looking into
fixing the additional stuff it was slightly more complex and ugly (and
for some reason I didn't decide to just fix up and submit what I had
but was trying to fix everything in the area).

Also, briefly looking back at the cover letter and thread overview it
looks like no one ever attempted to shed light on the question I asked
in my RFC about what correct behavior was for one special case (i.e.
whether patches 5 & 6 of that series should be kept or whether they
should be dropped and patch 7 should be squashed into earlier
patches).  Anyone have thoughts on that?

Elijah

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

end of thread, other threads:[~2019-06-03 20:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-05-31 18:36 [bug?] clean: Demonstrate failure when used with paths Rafael Ascensão
2019-06-03 19:57 ` Rafael Ascensão
2019-06-03 20:32   ` Elijah Newren

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