Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- ksql
- HandlerMethodArgumentResolver
- JPA
- 자바 ORM 표준 JPA 프로그래밍
- intellij 즐겨찾기
- CompletableFuture
- IntelliJ
- intellij 핵심 단축키
- 리팩토링 2판
- vue.js
- 리눅스
- 백명석님
- intellij favorites
- Linux
- 친절한 SQL 튜닝
- aws
- git
- Spring Cloud Netflix
- 마이크로 서비스
- multipart테스트
- java
- findTopBy
- 자바 ORM 표준 JPA 프로그래밍 정리
- 원격 브랜 삭제
- @TransactionalEventListener
- javascript case
- #docker compose
- @Transactional Propagation
- Stream
- ksqldb
Archives
- Today
- Total
목록git rebase (1)
시그마 삽질==six 시그마
git rebase
1. rebase 정의 Merge를 할때 base를 두 브랜치의 공통조상이 아닌 특정브랜치의 최근 커밋으로 변경해서 한개씩 merge하는것 (re-다시 Base를 정해서 작업하는것) 지정한 브랜치를 베이스로 기준으로 해서 merge하는 방법임 2. rebase 방법 예시 1) feature/c 브랜치로 checkout git checkout feature/c head를 c2로 변경 2) master 브랜치로 rebase git rebase git rebase master c1는 잘나가다 c2에서 컨플릭트남 수동으로 컨플릭트 조정후 조정 잘되면 git rebase --continue 하면됨 조정 실패시 git rebase --abor 하면됨 merge conflict 완료 후 -> git rebase --..
프로그래밍/GIT
2020. 8. 31. 17:47