That looks great, I'll give it a try at work!<p>Basically, if I understand well, it's a GUI over `git add -p`. Instead of the CLI short diff, you get a `meld` instance that computes the diff between two (virtual) directories, one with the modified files of your git, one with the current index. And like `git -p`, you select what you want to add to the index.<p>That seems great to have a global vision of modifications, and to be able to navigate between the differents files to remember exactly what belongs to the commit!<p>I had such a tool in mind since I discovered `git add -p`, thanks for working on it!
> navigate to a change without saying 'n' to every change you want to skip<p>This tool sounds great, but in case you didn't know, 'git add -p' supports '/' to search for a matching hunk.