Answers for "git pull from specific commit"

11

how to pull from a particular branch in git

git pull origin <branch>
Posted by: Guest on June-30-2020
0

pull specific commit

git fetch origin <commit-hash>
Posted by: Guest on January-03-2022
0

git pull a specific sha

git fetch origin
git merge YOUR_SHA_HERE
Posted by: Guest on November-04-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language