| 일 | 월 | 화 | 수 | 목 | 금 | 토 |
|---|---|---|---|---|---|---|
| 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 |
- JS
- list
- Linux
- regExp
- regex
- SQL
- db
- key
- port
- table
- Java
- Git
- jQuery
- PostgreSQL
- Session
- STS
- lambda
- JavaScript
- Windows
- JSON
- Python
- jsp
- File
- dict
- Oracle
- css
- html
- insert
- MAP
- spring
- Today
- Total
목록Git (3)
step1
1. git init : Create a new Git repository git init 로컬에서 사용할 폴더 경로에서, git init 2. git clone : Create a clone of the target repository git clone [repo] - git clone https://github.com/~ - git clone ssh://git@000.000.000.000:0000/~ ==> 원격저장소의 내용이 땡겨와 짐. # 수정 사항 반영 1. git add . 2. git commit . 3. git push origin master # 원격 저장소 내용 반영 git pull origin master ※ origin : 원격 저장소 master : git init으로 초기화 할때..
1. Github 연동을 위한 ssh key 생성 ssh-keygen -t rsa -C "my_account" -t : type of key rsa ed25519 -C : cutom key comment - will be appended at the end of the public key (꼭 github 계정이 아니어도 됨.) → 설정 사항 1. in which to save the key : default 로 ~/.ssh 변경할거면 입력해주기 2. passphrase 암호 추가할거면 입력&확인 안 할거면 enter 쳐서 넘기기 => 키 생성! 2. 생성한 키 등록하기 cat [key:id_rsa.pub] public key 가져와서 등록하기 -C 옵션을 줬으면, 이때 설정한 코멘트(메일 주소) 가 키..