I'm working on a regression in the source code. I'd like to tell git: "checkout the source based on a parameterized date/time". Is this possible? I also have staged changes in my current view that I don't want to lose. Ideally I would like to toggle back and forth between the current source, and some version I'm interested in based on a previous date.
To keep your current changesYou can keep your work stashed away, without commiting it, with Options for checkout by date
|
|||||||||||||||
|
|
Looks like you need something along the lines of this: Git checkout based on date In other words, you use rev-list to find the commit and then use checkout to actually get it. If you don't want to lose your staged changes, the easiest thing would be to create a new branch and commit them to that branch. You can always switch back and forth between branches. |
|||
|
|
Andy's solution does not work for me. Here I found another way:
|
||||
|
|
|
rev-list won't work if You have any branches merged. For example: I wanted to go back on V5 branch but ended up in V4.2 branch |
|||
|
|
git bisect goodpoint. – MatrixFrog Aug 9 '11 at 3:06