일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- concurrency
- SwiftUI
- builder
- 문법
- isolate
- AppleDeveloper
- swift
- network
- WiFi
- singleton
- factory
- Adapter
- iot
- OpenAI
- dartz
- philipshue
- GIT
- Architecture
- flutter
- EventLoop
- WWDC24
- SampleApp
- uikit
- LifeCycle
- Xcode
- designpattern
- tuist
- weatherkit
- state
- dart
Archives
- Today
- Total
Jaebi의 Binary는 호남선
Mac에서 Git 시작하기 본문
목차
Git 설정
- git config 설정 (가급적 Github에 등록한 User Name과 Email 사용)
git config --global user.name "{My User Name}"
git config --global user.email "{My Email}"
- SSH 생성
- SSH Key 생성
- `ssh-keygen -t rsa -b 4096 -C "My Github Email"`
- Key 저장할 파일 경로 설정
- passphrase 입력 & 재입력
- SSH Agent 실행
- `eval "$(ssh-agent) -s"`
- SSH Key 추가
- `ssh-add ~/.ssh/id_rsa`
- SSH Public Key 클립보드에 복사
- `pbcopy < ~/.ssh/id_rsa.pub`
- SSH Key 생성
- Github에 SSH Public Key 등록
- Github 우측 상단 사용자 아이콘 클릭, Settings로 이동
- SSH and GPG keys 메뉴 선택
- New SSH key 클릭, 복사한 Key 붙여넣기
Reference