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 |
Tags
- 페이지네이션
- 페이지네이션 최적화
- 제약 조건
- Cannot add or update a child row: a foreign key constraint fails
- kafka-connect
- programmers
- Query String
- kafka connect
- constraint fails
- debezium
- git rebase -i
- 1452
- event loop
- Invalid character found in method name
- reflog
- 23000
- git reflog
- Cannot delete or update a parent row: a foreign key constraint fails
- API 설계
- foreign key constraint fails
- Git
- code --no-sandbox
- 참조무결성
- Late row lookup
- Pagination Optimization
- 1450
- jdbc connector
- Path Variable
- 문자열 검증
- kafkaconnect
Archives
- Today
- Total
목록Git (2)
Kawaii_Jordy
[GIT] git rebase -i (Interactive)
https://wormwlrm.github.io/2020/09/03/Git-rebase-with-interactive-option.html
취준/GIT
2021. 10. 8. 09:11
[GIT] GIT RESET 취소 하는 법 (git reflog)
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} 로 해서 해결했다.
취준/GIT
2021. 10. 7. 11:20