git squash merge 에서 과거 2개만 합치고 싶을떄
위에 커밋을 pick
밑에 커밋을 s (squash)
으로 하면된다 !
squash merge에 대해 처음 써봤는데 너무 신기하다. ㅎㅎ
해당 커밋번호로 가면 인근 커밋이 나옴.
git rebase -i HEAD~3
git rebase -i HEAD^ 직전
git reset HEAD^
https://kyounghwan01.github.io/blog/etc/git/git-branch-change/#head
https://stackoverflow.com/questions/2221658/whats-the-difference-between-head-and-head-in-git
https://backlog.com/git-tutorial/kr/stepup/stepup7_5.html
https://dev-yakuza.posstree.com/ko/git/git-squash/
https://mylko72.gitbooks.io/git/content/history.html
https://meetup.toast.com/posts/39
https://doqtqu.tistory.com/234
참고한 블로그입니다.