티스토리 뷰
로컬 컴퓨터의 ssh-key 생성
ssh-keygen
cat ~/.ssh/id_rsa.pub
원격저장소에 복사한 ssh-key 등록
[Edit Profile] - [SSH Keys] - [Add an SSH key]
원격저장소와 로컬컴퓨터 동기화 셋팅
git config --global user.name "이름"
git config --global user.email "이메일"
mkdir 프로젝트이름
cd 프로젝트이름
git init
touch README
git add README
git commit -m 'first commit'
git remote add origin git@gitlab.com:demun/저장소이름.git
git push -u origin master