일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 재정의
- static
- Test
- equals
- 바이너리 카운팅
- DI
- redis
- cache
- KEVISS
- hashcode
- SQL
- 조합
- select_type
- 열 속성
- MSA
- StringBuilder
- 필드 주입
- docker
- lambda
- AOP
- DDL
- stream
- Spring
- 생성자 주입
- 테스트 코드
- jwt
- jpa
- VUE
- 인덱스
- java
- Today
- Total
목록Git (12)
백엔드 개발자 블로그
https://learngitbranching.js.org/?locale=ko Learn Git BranchingAn interactive Git visualization tool to educate and challenge!learngitbranching.js.org git branch -f [브랜치이름] [이동할 곳] : 브랜치 강제 이동git branch [브랜치이름] : head위치에 브랜치 생성git checkout [이동할 곳] : head 옮기기git reset [브랜치이름] : 되돌리기 commit도 삭제git revert [브랜치이름] : 되돌리기 commit에 남음
![](http://i1.daumcdn.net/thumb/C150x150.fwebp.q85/?fname=https://blog.kakaocdn.net/dn/c13ZAb/btsED4Xp9XD/MRMCFfoZ9rboNFdvJppMTk/img.png)
IntelliJ와 GitHub를 연동하면 GitHub Desktop이나 SourceTree와 같은 Git GUI 없이 쉽게 사용할 수 있어서 해당 글을 작성합니다. 1. Repository 생성 GitHub에 로그인 후 우측 상단의 + 버튼을 눌러서 새로운 repository를 생성한다. 그 후 Repository 명을 입력하고 공개 여부를 결정하고 생성한다. HTTPS 주소는 추후 IntelliJ 연동 시 필요한 주소이니 미리 복사해놓자. 2. IntelliJ에 Git/GitHub 설정 메뉴에서 File-Settings를 선택한다. Settings 창이 뜨면 Version Control에서 Git을 선택한다. 우측 상단의 Test 버튼을 누른다. Git을 별도로 설치하지 않은 상태라면 손쉽게 Intel..
gitignore Git으로 추적하지 않을(무시할) 파일을 설정 `.gitignore` 파일에 아래와 같이 설정 # 특정 파일 data.csv user.xlsx # 특정 폴더 secret/ # 특정 확장자 *.bmp 일반적으로 `OS(운영체제 - mac, windows)` , 특정 언어, 특정 개발 환경(파이참, vs code, eclipse, ...) https://github.com/github/gitignore/blob/master/Python.gitignore https://gitignore.io ![image-20210706111546066](md-images/image-20210706111546066.png) 예시 # Created by https://www.toptal.com/develope..