[PATCH] documentation: add git transport security notice

2013-07-05 Thread Fraser Tweedale
with caution on unsecured networks. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- Documentation/urls.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/urls.txt b/Documentation/urls.txt index 60ba300..9c8f524 100644 --- a/Documentation/urls.txt +++ b/Documentation/urls.txt

[PATCH] diff-options: document default similarity index

2013-07-05 Thread Fraser Tweedale
The default similarity index of 50% is documented in gitdiffcore(7) but it is worth also mentioning it in the description of the -M/--find-renames option. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- Documentation/diff-options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion

Re: [PATCH] diff-options: document default similarity index

2013-07-05 Thread Fraser Tweedale
On Fri, Jul 05, 2013 at 02:00:40AM -0700, Junio C Hamano wrote: Fraser Tweedale fr...@frase.id.au writes: The default similarity index of 50% is documented in gitdiffcore(7) but it is worth also mentioning it in the description of the -M/--find-renames option. Is it? I am not sure

[PATCH] documentation: add git transport security notice

2013-06-25 Thread Fraser Tweedale
with caution on unsecured networks. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- Documentation/urls.txt | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Documentation/urls.txt b/Documentation/urls.txt index 3ca122f..b58a647 100644 --- a/Documentation/urls.txt +++ b/Documentation/urls.txt

[PATCH] documentation: add git transport security notice

2013-06-24 Thread Fraser Tweedale
The fact that the git transport has no end-to-end security is easily overlooked. Add a brief security notice to the GIT URLS section of the documentation stating that the git transport should be used with caution on unsecured networks. Signed-off-by: Fraser Tweedale fr...@frase.id.au

[PATCH] diff-options: document default similarity index

2013-06-24 Thread Fraser Tweedale
The default similarity index of 50% is documented in gitdiffcore(7) but it is worth also mentioning it in the description of the -M/--find-renames option. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- Documentation/diff-options.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion

[PATCH] documentation: fix asterisks in fetch-options

2013-06-24 Thread Fraser Tweedale
Fix refspec asterisks in the -t/--tags section of the fetch-options documentation. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- Documentation/fetch-options.txt | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/Documentation/fetch-options.txt b/Documentation

Re: [PATCH] documentation: fix asterisks in fetch-options

2013-06-24 Thread Fraser Tweedale
Right you are. I missed that; apologies for the noise. Fraser On Mon, Jun 24, 2013 at 01:35:13PM +0200, Thomas Rast wrote: Fraser Tweedale fr...@frase.id.au writes: diff --git a/Documentation/fetch-options.txt b/Documentation/fetch-options.txt index 9cb6496..f2ac3bc 100644

Re: [PATCH] documentation: add git transport security notice

2013-06-24 Thread Fraser Tweedale
On Mon, Jun 24, 2013 at 09:24:29AM -0700, Junio C Hamano wrote: Fraser Tweedale fr...@frase.id.au writes: The fact that the git transport has no end-to-end security is easily overlooked. Add a brief security notice to the GIT URLS section of the documentation stating that the git

[PATCH] push: fix segfault when HEAD points nowhere

2013-01-31 Thread Fraser Tweedale
When reporting the outcome of a push, a segfault occurs if HEAD does not point somewhere. Check that HEAD points somewhere before trying to strcmp it. Signed-off-by: Fraser Tweedale fr...@frase.id.au --- transport.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/transport.c