DevOps/GIT

github#19 git pull request 종류

aliceintr 2020. 11. 27. 14:41
반응형

생활 코딩에서 다룬 더 디테일한 git pull request 종류

 

 

 

 

 


 

 

Stack Over flow 에 자세한 다이어그램이 나와있다.

Merge commits: retains all of the commits in your branch and interleaves them with commits on the base branch

ref : https://stackoverflow.com/questions/2427238/in-git-what-is-the-difference-between-merge-squash-and-rebase

 

 


 

 

 

Merge Squash: retains the changes but omits the individual commits from history

ref: https://stackoverflow.com/questions/2427238/in-git-what-is-the-difference-between-merge-squash-and-rebase

 

 


 

 

Rebase: This moves the entire feature branch to begin on the tip of the master branch, effectively incorporating all of the new commits in master

ref :  https://stackoverflow.com/questions/2427238/in-git-what-is-the-difference-between-merge-squash-and-rebase

 

 

 

 

 

 

 

 

내용이 도움이 되셨다면 블로그 구독하기 부탁드리겠습니다.

* 이 글의 모든 저작권은 aliceintr에 있으며 무단 배포 및 사용은 자제해 주시기 바랍니다. *

반응형