Skip to content

Latest commit

 

History

History
8 lines (7 loc) · 136 Bytes

push_only_specific_commit_to_branch.md

File metadata and controls

8 lines (7 loc) · 136 Bytes

Push only specific commit to branch

git checkout master
git checkout -b new-branch
git cherry-pick {commit-hash}
git push