Re: [PATCH] fetch: ignore wildcarded refspecs that update local symbolic refs

2012-12-12 Thread Jay Soffian
motivated this patch beyond the commit message. But, this message is quite clear. So: Acked-by: Jay Soffian diff --git a/remote.c b/remote.c index 04fd9ea..a72748c 100644 --- a/remote.c +++ b/remote.c @@ -1370,6 +1370,16 @@ int branch_merge_matches(struct branch *branch, return

Re: [PATCH] submodule: teach foreach command a --revision tree-ish option

2012-10-09 Thread Jay Soffian
On Tue, Oct 9, 2012 at 2:12 AM, Junio C Hamano gits...@pobox.com wrote: Junio C Hamano gits...@pobox.com writes: Assuming that the above guess is correct (which is a huge assumption, given the lack of clarity in the description), I think the feature might make sense. The example would have

Re: [PATCH] submodule: teach foreach command a --revision tree-ish option

2012-10-09 Thread Jay Soffian
On Tue, Oct 9, 2012 at 5:21 PM, Jens Lehmann jens.lehm...@web.de wrote: Nothing I can think of right now, the above is a pretty good summary. My gut feeling is that having git submodule foreach --revision ... recurse through submodules whose work trees are out of sync is pretty fragile and

[PATCH] submodule: teach foreach command a --revision tree-ish option

2012-10-08 Thread Jay Soffian
checkout v1.0 $ git submodule update $ git submodule foreach 'git tag v1.0' Signed-off-by: Jay Soffian jaysoff...@gmail.com --- Documentation/git-submodule.txt | 7 ++- git-submodule.sh| 27 --- t/t7407-submodule-foreach.sh| 15 +++ 3

Re: receive.denyNonNonFastForwards not denying force update

2012-08-20 Thread Jay Soffian
On Mon, Aug 20, 2012 at 9:53 PM, Brandon Casey draf...@gmail.com wrote: git config --system -e Hopefully your editor exposes the path that it is editing even if you don't have permission to modify it. GIT_EDITOR=echo git config --system -e works for me. j. -- To unsubscribe from this

[PATCH] gitweb: URL-decode $my_url/$my_uri when stripping PATH_INFO

2012-08-08 Thread Jay Soffian
() on both $my_url and $my_uri before stripping PATH_INFO from them. Signed-off-by: Jay Soffian jaysoff...@gmail.com --- gitweb/gitweb.perl | 5 + 1 file changed, 5 insertions(+) diff --git a/gitweb/gitweb.perl b/gitweb/gitweb.perl index 3d6a705388..7f8c1878d4 100755 --- a/gitweb/gitweb.perl +++ b