We have a remote git repo that we normally deploy from using git push on our dev server then git pull on on our live servers to get the latest pushed version of the repo.
But if we have committed and pushed a few revisions (without a git pull on the live servers) how can we do a git pull that is referring to the older commit that we want?
i.e. something like git pull -r 3ef0dedda699f56dc1062b5dcc2c59f7ad93ede4
git pull server:repovs the regulargit pull) – dlrust Feb 26 '10 at 19:01There is a specific commit on the server that is missing locally. The commit isn't part of a branch nor of a tag and it isn't trasnfered with a pull/fetch.
How to fetch a specific commit?
– BlackEye Apr 30 '19 at 09:40