Git Merge 종류
·
👨‍💻 Dev Note/Git
Merge 종류 Github에서는 세 종류의 Merge Button이 있다. 그 종류는 아래와 같다. Merge Commit All commits from this branch will be added to the base branch via a merge commit. Squash and Merge The (n) commits from this branch will be combined into one commit in the base branch. Rebase and Merge The (n) commits from this branch will be rebased and added to the base branch. 아래 명령을 통해 master branch에서 test-branch를 checkout..