# list remotes
git remote -v
# add remote if needed
git remote add xyz [email protected]:xyz/project.git
# fetch remote data
git fetch xyz
# find the commit on a particular branch
git log xyz/branch-name
# cherry pick the commit into local repo
git cherry-pick 1234567890
Last active
September 24, 2023 11:22
-
-
Save brianzelip/5e8d6784da59486ba066406ddf363b58 to your computer and use it in GitHub Desktop.
Cherry pick a commit from a remote repository
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment