작업하던 브랜치가 아닌 master에 실수로 commit을 했다. master의 commit을 내가 작업하던 브랜치로 어떻게 가져와야할까..🍒 cherrypick을 사용하면 된다!
git log
git cherry-pick commitcode
git checkout master
git reset commit^ --hard
^를 붙이면 현재커밋까지 삭제, 붙이지 않으면 이후 커밋부터 삭제