✔ 작업할 위치에 폴더 생성
mkdir <repositoryname>
✔ git 초기화 : 생성된 폴더 안에서 아래 명령을 실행하면 새로운 git repository가 만들어짐 ( .git 폴더가 생성됨 ) (master 브랜치가 생김)
git init
✔ 작업 폴더에서 파일 생성 : touch -> 빈 파일 생성
working directory % touch test.txt
✔ git add, commit
working directory % git add test.txt
working directory % git commit -m "first commit" test.txt
github에 접속한 뒤 create repository 버튼 클릭
create repository에서 각종 설정을 한 뒤 remote repository가 생성 됐는지 확인
local repo에 remote repo를 등록
이제 local repo와 remote reop간 push와 pull이 가능해짐
remote repo에서 새로고침하면 push된 파일이 보임
✔ local repository에 remote repository 등록
git remote add origin https://<username>:<token>@github.com/<username>/<repositoryname>.git
✔ remote repository 수정하기
git remote set-url origin
https://<username>git:<token>@github.com/<username>/<repositoryname>.git
✔ remote repository 정보 확인하기
git remote -v
✔ local repository에서 작업한 내용을 remote repository에 push하기
git push origin master
✔ remote repository에서 작업한 내용을 local repository로 pull하기
git pull origin master