init6
/
GitBranchPiscine
/
의미니 연습용
Search
Duplicate
Share
🍑
의미니 연습용
git rebase
1. 사용방법
•
main에서 topic branch를 딴 이후 main 에서 수정이 일어났는데 그걸 topic에 적용시키고 싶을 때
1.
docs
2.
예시 상황
•
topic을 너무 일찍 따버렸다!!
•
git rebase main
•
gut rebase 결과 →topic에 F, G(topic 딴 이후 main에 생긴 것)가 잘 들어왔다!
참고
Git - git-rebase Documentation
onto Starting point at which to create the new commits. If the --onto option is not specified, the starting point is . May be any valid commit, and not just an existing branch name. As a special case, you may use "A...B" as a shortcut for the merge base of A and B if there is exactly one merge base.