sparse checkout bug?

2 messages, 2 authors, 2016-06-15 · open the first message on its own page

sparse checkout bug?

From: Jay Soffian <hidden>
Date: 2016-06-15 22:52:06

I wanted to exclude a single massive directory from a checkout (the
LayoutTests directory from WebKit, which includes 130k files), so I
tried:

$ git config core.sparsecheckout true
$ echo '*' > .git/info/sparse-checkout
$ echo '!LayoutTests' >> .git/info/sparse-checkout
$ git read-tree -m -u HEAD

But LayoutTests is not being excluded. I also tried every variation of
including leading/trailing slash and trailing '*'.

Simple repro:

git init sparse-test && cd sparse-test &&
touch foo && mkdir bar && touch bar/baz &&
git add foo bar/baz &&
git commit -m initial &&
git config core.sparsecheckout true &&
echo '*' > .git/info/sparse-checkout &&
echo '!bar' >> .git/info/sparse-checkout &&
git read-tree -m -u HEAD &&
ls -1R
foo

bar:
baz

j.

Re: sparse checkout bug?

From: Joshua Jensen <hidden>
Date: 2016-06-15 22:52:06

----- Original Message -----
From: Jay Soffian
Date: 9/24/2011 1:50 PM
I wanted to exclude a single massive directory from a checkout (the
LayoutTests directory from WebKit, which includes 130k files), so I
tried:

$ git config core.sparsecheckout true
$ echo '*'>  .git/info/sparse-checkout
$ echo '!LayoutTests'>>  .git/info/sparse-checkout
$ git read-tree -m -u HEAD

But LayoutTests is not being excluded. I also tried every variation of
including leading/trailing slash and trailing '*'.
This bug has very recently been discussed on the mailing list.

As a workaround, use:

/*

instead of:

*

You said you have tried this already, but it works for me.  The only 
thing I do in addition is this:

/*
!LayoutTests/

-Josh
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help