Re: [PATCH V2 2/3] config doc: update dot-repository notes

2013-09-14 Thread Philip Oakley
From: "Junio C Hamano" Sent: Friday, September 13, 2013 11:28 PM Subject: Re: [PATCH V2 2/3] config doc: update dot-repository notes Philip Oakley writes: branch..remote can be set to '.' (period) as the repository path (URL) as part of the remote name dwimmery. Tell the reader. Such relat

Re: [PATCH V2 1/3] Doc URLs: relative paths imply the dot-respository

2013-09-14 Thread Philip Oakley
From: "Junio C Hamano" Sent: Friday, September 13, 2013 11:21 PM Philip Oakley writes: Signed-off-by: Philip Oakley --- Documentation/urls.txt | 7 +++ 1 file changed, 7 insertions(+) diff --git a/Documentation/urls.txt b/Documentation/urls.txt index 9ccb246..5350a63 100644 --- a/Docum

Re: [PATCH] t7508: avoid non-portable sed expression

2013-09-14 Thread Matthieu Moy
Eric Sunshine writes: > strip_comments () { > - sed "s/^\# //; s/^\#$//; s/^#\t/\t/" <"$1" >"$1".tmp && > + tab=' ' > + sed "s/^\# //; s/^\#$//; s/^#$tab/$tab/" <"$1" >"$1".tmp && Sounds trivially right. Sorry for breaking this. -- Matthieu Moy http://www-verimag.imag.fr/~moy/

<>

2013-09-14 Thread FBI TRANSFER ALERT
FUNDS TRANSFER NOTIFICATION MESSAGE.txt Description: Binary data

[PATCH] fixup! pack v4: move packv4-create.c to libgit.a

2013-09-14 Thread Eric Sunshine
Signed-off-by: Eric Sunshine --- For squashing onto np/pack-v4 in 'pu'. .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 66199ed..878618b 100644 --- a/.gitignore +++ b/.gitignore @@ -190,6 +190,7 @@ /test-match-trees /test-mergesort /test-mktemp +/

[PATCH] t3200: fix failure on case-insensitive filesystems

2013-09-14 Thread Eric Sunshine
62d94a3a (t3200: Add test demonstrating minor regression in 41c21f2; 2013-09-08) introduced a test which creates a directory named 'a', however, on case-insensitive filesystems, this action fails with a "fatal: cannot mkdir a: File exists" error due to a file named 'A' left over from earlier tests.