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
- signWith
- Spring Security
- orElseGet
- JWT
- TDD
- git cli
- effective java
- Java
- Functional Programming
- Stream
- 함수형 프로그래밍
- consumer
- kafka
- 카프카
- producer
- Authentication
- orelse
- 인텔리제이 단축키
- Java8
- Clean Code
- Factory Method Pattern
- junit5
- optional
- 디자인패턴
- thread
- mokito
- 싱글톤
- topic
- SpringBoot
Archives
- Today
- Total
목록git cli (1)
goodbye
[Git] CLI(Command Line Interface) 명령어 정리
Mac (os 터미널) 에서 SSH key 등록하기 1. ssh key 생성 생성 파일의 경로 : ~/.ssh/id_rsa ssh-keygen -t rsa -C GibHub 계정 이메일 주소 2. GitHub Settings 메뉴 이동 New SSH Key 버튼 클릭 SSH Key 입력 : cat ~/.ssh/id_rsa.pub 3. 생성 완료 후 Generate 확인 ssh -T git@github.com 4. 맥에서 숨은 파일 확인 shift + command + . 5. Git에서 기본 편집기 변경하기 git config --global core.editor "notepad++" git 최초 설정 1. Git 전역으로 사용자 이름과 이메일 주소를 설정 git config --global user.n..
Git
2022. 8. 3. 10:26