Re: [PATCH v6 7/8] update-ref: support multiple simultaneous updates

2013-09-11 Thread Eric Sunshine
On Wed, Sep 11, 2013 at 8:36 AM, Brad King wrote: > On 09/10/2013 06:51 PM, Eric Sunshine wrote: >> On Mon, Sep 9, 2013 at 8:57 PM, Brad King wrote: >>> +Use 40 "0" or the empty string to specify a zero value, except that >> >> Did you want an 's' after the "0"? > > The same description without '

Re: [PATCH v6 7/8] update-ref: support multiple simultaneous updates

2013-09-11 Thread Brad King
On 09/10/2013 06:51 PM, Eric Sunshine wrote: > On Mon, Sep 9, 2013 at 8:57 PM, Brad King wrote: >> +Use 40 "0" or the empty string to specify a zero value, except that > > Did you want an 's' after the "0"? The same description without 's' already appears in git-update-ref.txt above this locatio

Re: [PATCH v6 7/8] update-ref: support multiple simultaneous updates

2013-09-10 Thread Eric Sunshine
On Mon, Sep 9, 2013 at 8:57 PM, Brad King wrote: > diff --git a/Documentation/git-update-ref.txt > b/Documentation/git-update-ref.txt > index 0df13ff..0a0a551 100644 > --- a/Documentation/git-update-ref.txt > +++ b/Documentation/git-update-ref.txt > @@ -58,6 +58,58 @@ archive by creating a symlin

[PATCH v6 7/8] update-ref: support multiple simultaneous updates

2013-09-09 Thread Brad King
Add a --stdin signature to read update instructions from standard input and apply multiple ref updates together. Use an input format that supports any update that could be specified via the command-line, including object names like "branch:path with space". Signed-off-by: Brad King --- Document