Say I have a repo with multiple banches.
Is it possible to get the repo snapshot of some particular date/time using usual git foo? (We currently have code dumps every day, and I am thinking of ways to remove that)
(Assuming no branches are permanently deleted, and the git commit history hasn't been played with)
Edit: Interim branch merges are possible.
Beware of the @{<date>}
, based on the reflog (meaning, limited by default to 90 days).
See "Specifying Revisions" in git rev-parse
.
"git checkout by date" suggests another method:
git checkout `git rev-list -n 1 --before="2013-09-25 5:00" master`
Note this warning though:
rev-list
won't work if you have any branches merged.
For example: I wanted to go back onV5
branch but ended up inV4.2
branch.
A more robust way would to add --first-parent
:
git checkout `git rev-list -n 1 --first-parent --before="2013-09-25 5:00" master`
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With