i'm working on 2 different branches release and development.
now i noticed i still need to integrate some changes that were committed to the release branch back into the development branch.
the problem is i don't need all of the commit. only some hunks in certain files. so a simple
git cherry-pick bc66559
does not do the trick.
when i do a
git show bc66559
i can see the diff but don't really know a good way of applying that partially to my current working tree.
any suggestions would be very welcome!