Re: [PATCH v7 2/4] worktree: improve message when creating a new worktree

2018-04-23 Thread Thomas Gummerer
On 04/16, Junio C Hamano wrote: > Thomas Gummerer writes: > > > Currently 'git worktree add' produces output like the following: > > > > Preparing ../foo (identifier foo) > > HEAD is now at 26da330922 > > > > The '../foo' is the path where the worktree is created,

Re: [PATCH v7 2/4] worktree: improve message when creating a new worktree

2018-04-23 Thread Thomas Gummerer
On 04/23, Eric Sunshine wrote: > On Sun, Apr 15, 2018 at 4:29 PM, Thomas Gummerer wrote: > > Currently 'git worktree add' produces output like the following: > > > > Preparing ../foo (identifier foo) > > HEAD is now at 26da330922 > > [...] > > Instead of this

Re: [PATCH v7 2/4] worktree: improve message when creating a new worktree

2018-04-22 Thread Eric Sunshine
On Sun, Apr 15, 2018 at 4:29 PM, Thomas Gummerer wrote: > Currently 'git worktree add' produces output like the following: > > Preparing ../foo (identifier foo) > HEAD is now at 26da330922 > [...] > Instead of this message, print a message that gives the user a bit

Re: [PATCH v7 2/4] worktree: improve message when creating a new worktree

2018-04-15 Thread Junio C Hamano
Thomas Gummerer writes: > Currently 'git worktree add' produces output like the following: > > Preparing ../foo (identifier foo) > HEAD is now at 26da330922 > > The '../foo' is the path where the worktree is created, which the user > has just given on the command

[PATCH v7 2/4] worktree: improve message when creating a new worktree

2018-04-15 Thread Thomas Gummerer
Currently 'git worktree add' produces output like the following: Preparing ../foo (identifier foo) HEAD is now at 26da330922 The '../foo' is the path where the worktree is created, which the user has just given on the command line. The identifier is an internal implementation detail,