git #merge #cherry-pick #rebase
-
git 사용하기 (2)Practical_skills/git 2019. 7. 13. 23:03
지난 포스트에 이어서 branch들을 병합할때 사용하는 rebase와 cherry-pick 을 문제를 통해서 알아보자. Problem 2. dependencies (local/remote rebase) and cherry-pickby Daejin create two branches ‘a’ and ‘b’ switch to branch ‘b’ and create a file b.txt and add any text in it. git add and commit it. switch back to branch ‘a’ and create a file a.txt. Q1) There are two ways (except git merge) to apply changes in branch ‘b’ to branch ‘a..