How can I clone from a开发者_运维百科 git repo for a certain timestamp?
For instance cloning everything in a dev branch up until a set unix timestamp.
You can't. You can limit the depth of the history, but then it's not a clone.
you might want to try
git checkout "@{10 minutes ago}"
精彩评论