Re: [PATCH 1/2] t2200: check that "add -u" limits itself to subdirectory

2013-03-13 Thread Jeff King
On Wed, Mar 13, 2013 at 10:44:25AM -0700, Junio C Hamano wrote: > > +# Note that this is scheduled to change in Git 2.0, when > > +# "git add -u" will become full-tree by default. > > +test_expect_success 'update did not touch files at root' ' > > + cat >expect <<-\EOF && > > + check > > + t

Re: [PATCH 1/2] t2200: check that "add -u" limits itself to subdirectory

2013-03-13 Thread Junio C Hamano
Jeff King writes: > We didn't seem to be testing this transition at all. I think it's sane > to do so now, and Junio's "now it is 2.0, let's switch" patch should > update the test. Yes, but I am not sure if this is testing the right thing. > +# Note that this is scheduled to change in Git 2.0,

Re: [PATCH 1/2] t2200: check that "add -u" limits itself to subdirectory

2013-03-13 Thread Matthieu Moy
Jeff King writes: > This behavior is due to change in the future, but let's test > it anyway. Thanks. This should be merged regardless of PATCH 2/2 I think. -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a messa

[PATCH 1/2] t2200: check that "add -u" limits itself to subdirectory

2013-03-12 Thread Jeff King
This behavior is due to change in the future, but let's test it anyway. That helps make sure we do not accidentally switch the behavior too soon while we are working in the area, and it means that we can easily verify the change when we do make it. Signed-off-by: Jeff King --- We didn't seem to b