someone could help me and let me know if it is possible and how, to be able to return to a specific commmit to be able to either clone or download the project from said commit backwards, that is to say the whole project until the desired commit.
someone could help me and let me know if it is possible and how, to be able to return to a specific commmit to be able to either clone or download the project from said commit backwards, that is to say the whole project until the desired commit.
You could download the repository and return it between the commands using the command:
$ git checkout <hash> --hash es el numero del commit
$ git checkout HEAD~2
$ git reset --HEAD.