일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 멱등활용
- 무상태프로토콜
- gitrevert
- RFC723x
- anyMatch
- hibernate.dialect
- Invalid bound statement (not found)
- JPA
- http
- KAKAOLOGINAPI
- @Table
- Transaction not successfully started
- org.apache.ibatis.binding.BindingException
- 데이터베이스 방언
- 김영한JPA
- initialDelay
- ERROR TYPE : org.apache.ibatis.binding.BindingException
- Git
- DB방언
- 매핑정보가없는필드
- 자바ORM표준프로그래밍
- gitreset
- 네이버 연결된 서비스
- HTTP3
- HTTPMESSAGE
- fixedDelay
- SpringBoot
- @Entity
- 네이버로그인API
- 캐쉬가능
Archives
- Today
- Total
목록Reset (1)
twocowsong
Git reset , revert
그림처럼 총4번의 커밋으로 이루어진 프로젝트가 있습니다. - First commit : 최초 커밋 - A file Create : A파일 생성 - B file Create : B파일 생성 - A file Delete , C file Create : A파일 삭제, C파일 생성 reset 현재 지점에서 reset을 하게되면 해당지점으로 돌아가게됩니다. git bash를 통하여 git log를 입력하게되면 commit 옆 해당지점 값 입니다. git log 해당 지점 값을 입력하여 돌아갈수있습니다. git reset --hard 주소값 B file Create 지점으로 리셋을 하게되면 마지막으로 작업했던 A file Delete , C file Create 작업전으로 이동하게됩니다. 즉 A파일은 다시 생성되고..
IT/Git
2022. 2. 23. 10:46