일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 23000
- Git
- kafka connect
- API 설계
- Late row lookup
- kafkaconnect
- 1450
- 페이지네이션 최적화
- 1452
- Path Variable
- 참조무결성
- programmers
- constraint fails
- git rebase -i
- debezium
- reflog
- code --no-sandbox
- git reflog
- Pagination Optimization
- Cannot add or update a child row: a foreign key constraint fails
- kafka-connect
- Cannot delete or update a parent row: a foreign key constraint fails
- 페이지네이션
- 제약 조건
- jdbc connector
- foreign key constraint fails
- Query String
- Invalid character found in method name
- event loop
- 문자열 검증
- Today
- Total
목록취준/GIT (11)
Kawaii_Jordy
https://frontdev.tistory.com/entry/GIT-Conflict%EC%B6%A9%EB%8F%8C-%EB%82%AC%EC%9D%84-%EB%95%8C-%EA%B0%95%EC%A0%9C%EB%A1%9C-Pull-%ED%95%98%EA%B8%B0
Git Conflict Git conflict가 나면 당황부터 하게 됩니다. ㅎㅎ 간단한 방법이 있어서 공유해봐요. 1 2 3 git fetch --all git reset --hard origin/master git pull origin master cs 제가 수정한 파일이 conflict되면 fetch로 파일들을 remote 저장소에서 이전 fetch들을 받은 다음 local에서 다시 reset hard를 사용하여 제 상태를 컨플릭트 나기전인 수정하기 전으로 되돌립니다. 이후 pull 하면 remote에서 loacal로 정상적으로 다운받아집니다. 여기서 pull과 fetch의 차이점이 궁금하실 수 있겠습니다. PULL Pull로 Git 명령어를 사용할 시에는 현재 작업하고있는 로컬에 커밋을 병합합니다..
https://wormwlrm.github.io/2020/09/03/Git-rebase-with-interactive-option.html
git reflog 3f6db14 HEAD@{0}: HEAD~: updating HEAD d27924e HEAD@{1}: checkout: moving from d27924e0fe16776f0d0f1ee2933a0334a4787b4c 57e53a0 HEAD@{2}: modify : bug 수정 [...] 이런식으로 이전까지했던 작업들 reflog를 확인해 몇번째 HEAD로 이동할지 확인한다. 만약 HEAD@{1}로 이동할꺼라면 {1} git reset --hard HEAD@{1} 로 해서 해결했다.