Reputation: 359
I'm looking for a way to include specific parts of stashes in stage. I'm using TIG frontend, so the method can involve some low level offset, etc. calculation. However currently I don't have any idea of what to compute.
Does someone have an idea of how to move single lines from a stash into the stage area?
Upvotes: 3
Views: 214
Reputation: 644
Try difftool against stash
git difftool stash@{0}
This will open a difftool (Kdiff3 in my case) and than you will be able to merge files and select willing lines.
Upvotes: 3