<div dir="auto"><div><div class="gmail_quote"><div dir="ltr" class="gmail_attr">tim Rowledge <<a href="mailto:tim@rowledge.org">tim@rowledge.org</a>> schrieb am Mo., 16. März 2020, 18:47:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"> <br>I can manage a `git clone URL` and that's about it. How can I get a particular historical version, for example?<br></blockquote></div></div><div dir="auto"><br></div><div dir="auto">After the clone, you can do (in the cloned directory)</div><div dir="auto"><br></div><div dir="auto">    git checkout <commit-id/sha-1></div><div dir="auto"><br></div><div dir="auto">And your directory will contain the tree as it was at that version.</div><div dir="auto"><br></div><div dir="auto">(If you want to use this clone for further work, you must go back to a branch before you create new commits: git checkout <branchname>)</div></div>