terakoth Posted May 12, 2017 Report Share Posted May 12, 2017 What is the command to pull a certain commit Link to comment Share on other sites More sharing options...
codeman3518 Posted May 12, 2017 Report Share Posted May 12, 2017 To merge specific commit you need to checkout the branch first as followed git checkout branch then use git cherry-pick hash. git checkout master & cherry-pick hash 1 Link to comment Share on other sites More sharing options...
CDawg Posted May 12, 2017 Report Share Posted May 12, 2017 just do a git fetch for that exact commit hash Link to comment Share on other sites More sharing options...
Recommended Posts