Re: git-credential-cache--daemon quits on SIGHUP, can we change it to ignore instead?

2015-11-08 Thread Noam Postavsky
On Fri, Oct 30, 2015 at 5:08 PM, Jeff King wrote: > Right. And not only is that hard to get right (I doubt, for example, you > support the arbitrary "!" shell expressions that git does), but it's > impossible to know for sure that will be needed, because you cannot know > all possible helpers (I m

how to check for uncommitted/unstaged changes on remote side before pushing

2015-11-08 Thread Marc Haber
Hi, I am trying to abuse git as a code distribution channel and would like to be able to trigger redistribution just by git push. The idea is to push to a remote to the branch that is currently checked out followed by a git reset --hard in the post-receive hook. I have already figured out that I

[PATCH] check-ignore: correct documentation about output

2015-11-08 Thread Dennis Kaarsemaker
By default git check-ignore shows only the filenames that will be ignored, not the pattern that causes their exclusion. Signed-off-by: Dennis Kaarsemaker --- Documentation/git-check-ignore.txt | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Documentation/git-check-igno

Re: [PATCH v6 25/25] refs: break out ref conflict checks

2015-11-08 Thread Junio C Hamano
Michael Haggerty writes: > I hate to cause the maintainer extra work. I guess I was making two > naive assumptions: > > * If we make the code-movement series simple and "obviously correct" > enough, then it could be merged pretty much straight through to > master. > > * If one or two topics c

Re:git在不”(AD)

2015-11-08 Thread dj
git 欢迎加入爱奇艺vip分享QQ群:5650047 每天发放好几波爱奇艺vip会员,看蜀山战纪,灵魂摆渡2等热门大片不要钱!限时开放!验证码511

Re: [PATCH] configure.ac: try -lpthread in $LIBS instead of $CFLAGS

2015-11-08 Thread Matthieu Moy
"Rainer M. Canavan" writes: > configure.ac | 8 +++- > 1 file changed, 7 insertions(+), 1 deletion(-) Looks all right to me. Thanks for you contribution and for your patience! -- Matthieu Moy http://www-verimag.imag.fr/~moy/ -- To unsubscribe from this list: send the line "unsubscribe git

[PATCH] configure.ac: try -lpthread in $LIBS instead of $CFLAGS

2015-11-08 Thread Rainer M. Canavan
Some linkers, namely the one on IRIX are rather strict concerning the order or arguments for symbol resolution, i.e. no libraries listed before objects or other libraries on the command line are considered for symbol resolution. That means that -lpthread can't work if it's put in CFLAGS, because it

Re: Bug: t5813 failing on Cygwin

2015-11-08 Thread Ramsay Jones
On 08/11/15 05:10, Jeff King wrote: > On Sat, Nov 07, 2015 at 10:02:45PM +0100, Dennis Kaarsemaker wrote: > >> Looks like lib-proto-disable.sh's fake SSH doesn't strip double leading >> /'es from the path. Try this patch: >> >> diff --git a/t/t5813-proto-disable-ssh.sh b/t/t5813-proto-disable >>

[PATCH] Escape Git's exec path in contrib/rerere-train.sh script

2015-11-08 Thread Daniel Knittl-Frank
Whitespace can cause the source command to fail. This is usually not a problem on Unix systems, but on Windows Git is likely to be installed under "C:/Program Files/", thus rendering the script broken. Signed-off-by: Daniel Knittl-Frank --- contrib/rerere-train.sh | 2 +- 1 file changed, 1 inser

[PATCH] t5813: avoid creating urls that break on cygwin

2015-11-08 Thread Dennis Kaarsemaker
The fake ssh used by this test simply strips ssh://host from the url, leaving paths behind that start with //, which cygwin interprets as UNC paths, causing the test to fail. We may want to actually fix this in git itself, making it remove extra slashes from urls before feeding them to transports