Re: Staging commits with visual diff tools?

2015-06-28 Thread John Lee
On Sun, 28 Jun 2015, John Lee wrote: Here it is: https://github.com/jjlee/git-meld-index Hasn't seen use for real yet, so be a bit cautious with it. Comments / patches / whatever appreciated. John By the way despite the name it should support all git difftools (it uses the same git

Re: Staging commits with visual diff tools?

2015-06-27 Thread John Lee
On Mon, 1 Jun 2015, John Lee wrote: On Sun, 31 May 2015, David Aguilar wrote: Were you thinking of something like this, or something else? Can you describe your use case a bit more? I think now I should just publish my script and then it will be very clear what I'm talking about. If

Re: Staging commits with visual diff tools?

2015-06-01 Thread John Lee
On Sun, 31 May 2015, David Aguilar wrote: Were you thinking of something like this, or something else? Can you describe your use case a bit more? I think now I should just publish my script and then it will be very clear what I'm talking about. If somebody then wants to add a similar feature

Re: Staging commits with visual diff tools?

2015-05-31 Thread David Aguilar
On Sun, May 31, 2015 at 10:36:52AM +0100, John Lee wrote: On Sat, 30 May 2015, David Aguilar wrote: On Tue, May 26, 2015 at 09:50:49PM +0100, John Lee wrote: Hi Does anybody have code to stage commits using a the visual diff/merge tools supported by git-difftool? Is there support in git

Re: Staging commits with visual diff tools?

2015-05-31 Thread John Lee
On Sat, 30 May 2015, David Aguilar wrote: On Tue, May 26, 2015 at 09:50:49PM +0100, John Lee wrote: Hi Does anybody have code to stage commits using a the visual diff/merge tools supported by git-difftool? Is there support in git ... I'm a g/vim user, so git-cola is finely tuned for

Re: Staging commits with visual diff tools?

2015-05-30 Thread David Aguilar
On Tue, May 26, 2015 at 09:50:49PM +0100, John Lee wrote: Hi Does anybody have code to stage commits using a the visual diff/merge tools supported by git-difftool? Is there support in git itself somewhere, even? I'm looking for something functionally similar to git add -p Looking at

Re: Staging commits with visual diff tools?

2015-05-29 Thread Michael J Gruber
John Lee venit, vidit, dixit 27.05.2015 09:34: On Wed, 27 May 2015, Jeff King wrote: If you are interested in looking further, see how the %patch_mode hash is defined in git-add--interactive.perl. Specifically, note that add -p is just one case: diff against the index and apply with apply

Re: Staging commits with visual diff tools?

2015-05-27 Thread Jeff King
On Tue, May 26, 2015 at 09:50:49PM +0100, John Lee wrote: Does anybody have code to stage commits using a the visual diff/merge tools supported by git-difftool? Is there support in git itself somewhere, even? I'm looking for something functionally similar to git add -p Looking at the

Re: Staging commits with visual diff tools?

2015-05-27 Thread John Lee
On Wed, 27 May 2015, Jeff King wrote: If you are interested in looking further, see how the %patch_mode hash is defined in git-add--interactive.perl. Specifically, note that add -p is just one case: diff against the index and apply with apply --cached. But once you have a separate tool for