It easy task to go back in time, but I want to go to the future. I want to find when something happened. I can do
get checkout HEAD~1
until I see the change. But I want to search faster so I'm doing:
get checkout HEAD~10
, until I see when the app is working.
Then I want to find the specific commit, so I want to go back (future), commit by commit commit, searching for something like:
git checkout HEAD~+5
.
Is something like that is exists?
UPDATe: I see that git bisect
can help me do it. I keep the question, for others who don't know that git bisect
exists, and have the same issue.
Thanks for the answers.