Is there any way to retrieve only one specific commit from a remote Git repo without cloning it on my PC? The structure of remote repo is absolutely same as that of mine and
I did a pull on my git repo:
git pull --rebase
Allowing git to pull in all the code for the branch and then I went to do a reset over to the commit that interested me.
git reset --hard
Hope this helps.