How to get certain commit from GitHub project - Stack Overflow
If you need the entire codebase as it existed at a specific point in time, you have several options depending on whether you want a full Git history or just a snapshot of the files. git hash download
A is a unique, 40-character hexadecimal string—generated via the SHA-1 algorithm —that identifies every specific state of a file, directory, or commit in a repository. While you cannot literally "download a hash" as a file, you can use these hashes to download exact versions of your project or specific files. 1. Downloading a Repository at a Specific Commit Hash How to get certain commit from GitHub project