[호스트?에서]
GitHub에서 Repository 만들기
github.com 로그인
우측 상단 + → New repository
이름 등록 (ex. runtime-tiered-memory)
Public / Private 선택 (연구 중이면 Private 추천)
README는 체크하지 말고 생성 (로컬에서 먼저 만들 예정이면)
→ URL 생김 (ex. https://github.com/kieun-park/runtime-tiered-memory.git)
[로컬에서]
설치 확인
git --version
sudo apt update
sudo apt install git
초기 등록
git config --global user.name "Kieun Park"
git config --global user.email "[email protected]"
확인
git config --list