Git 엉뚱한 브랜치에 push한 경우

1 개요[ | ]

Git 엉뚱한 브랜치에 push한 경우
Git 다른 브랜치에 잘못 push한 경우
Bash
Copy
git checkout wrong_branch
git revert commitsha1
git revert commitsha2
git checkout right_branch
git cherry-pick commitsha1
git cherry-pick commitsha2

2 같이 보기[ | ]

3 참고[ | ]