I am backtracking through my history to find what exactly broke iOS5.1 for my app. I've traced it to a single commit, however the commit has many files.
I would like to git checkout [commit before iOS5 break]
and have all of the changes from the commit that broke iOS5 (ie. the next commit) merged into the commit before it without having the changes committed. That way I can simply revert each file until I find the one with the changes that broke iOS 5.
Any idea on how to take the changes from the commit and put them on my current branch without having them committed yet?
Thanks.