Christian Couder <christian.cou...@gmail.com> writes:

> Diff with previous v2 version
> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
>
> diff --git a/Documentation/config.txt b/Documentation/config.txt
> index f5b6061..8a115b3 100644
> --- a/Documentation/config.txt
> +++ b/Documentation/config.txt
> @@ -2517,10 +2517,11 @@ receive.unpackLimit::
>       especially on slow filesystems.  If not set, the value of
>       `transfer.unpackLimit` is used instead.
>  
> -receive.maxsize::
> -     If the size of a pack file is larger than this limit, then
> -     git-receive-pack will error out, instead of accepting the pack
> -     file. If not set or set to 0, then the size is unlimited.
> +receive.maxInputSize::
> +     If the size of the incoming pack stream is larger than this
> +     limit, then git-receive-pack will error out, instead of
> +     accepting the pack file. If not set or set to 0, then the size
> +     is unlimited.
>  
>  receive.denyDeletes::
>       If set to true, git-receive-pack will deny a ref update that deletes
> diff --git a/builtin/receive-pack.c b/builtin/receive-pack.c
> ...
> diff --git a/t/t5546-receive-limits.sh b/t/t5546-receive-limits.sh
> new file mode 100755
> index 0000000..10cb0be
> --- /dev/null
> +++ b/t/t5546-receive-limits.sh
> @@ -0,0 +1,55 @@
> +#!/bin/sh
> + ...
> +test_done
> ---
>
> Christian Couder (1):
>   unpack-objects: add --max-input-size=<size> option
>
> Jeff King (2):
>   index-pack: add --max-input-size=<size> option
>   receive-pack: allow a maximum input size to be specified

This was a pleasant read.  All looked sensible.

Thanks.
--
To unsubscribe from this list: send the line "unsubscribe git" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to