Re: [PATCH v3 18/23] checkout: retire --to option

2015-07-08 Thread Junio C Hamano
Eric Sunshine sunsh...@sunshineco.com writes: ... as the series stands, the remaining ugly intimate knowledge between git-worktree and git-checkout is behind-the-scenes and localized (not affecting the user experience). Hopefully. Let's run with what we have right now. -- To unsubscribe from

Re: [PATCH v3 18/23] checkout: retire --to option

2015-07-07 Thread Eric Sunshine
On Mon, Jul 6, 2015 at 3:41 PM, Junio C Hamano gits...@pobox.com wrote: Eric Sunshine sunsh...@sunshineco.com writes: Now that git worktree add has achieved user-facing feature-parity with git checkout --to, retire the latter. [...] This effectively reverts changes to checkout.c by 529fef2

[PATCH v3 18/23] checkout: retire --to option

2015-07-06 Thread Eric Sunshine
Now that git worktree add has achieved user-facing feature-parity with git checkout --to, retire the latter. Move the actual linked worktree creation functionality, prepare_linked_checkout() and its helpers, verbatim from checkout.c to worktree.c. This effectively reverts changes to checkout.c

Re: [PATCH v3 18/23] checkout: retire --to option

2015-07-06 Thread Junio C Hamano
Eric Sunshine sunsh...@sunshineco.com writes: Now that git worktree add has achieved user-facing feature-parity with git checkout --to, retire the latter. Move the actual linked worktree creation functionality, prepare_linked_checkout() and its helpers, verbatim from checkout.c to