Interactive Rebase
git rebase -i HEAD~5
# pick → squash, fixup, edit 등으로 커밋 정리Cherry-pick
다른 브랜치의 특정 커밋만 가져올 때 사용합니다.
git cherry-pick abc123
git cherry-pick abc123..def456 # 범위Bisect로 버그 추적
git bisect start
git bisect bad # 현재가 버그 있음
git bisect good v1.0 # v1.0은 정상
# Git이 이진 탐색으로 버그 커밋을 찾아줌
댓글 0