$ git
$ cd {로컬저장소 경로}
$ git init
맨 아래 Initialized empty Git repository 라는 문구가 나오면 Git이 잘 연결된 것이다!
$ git add {변경한 파일}
$ git commit -m "{상세 설명}"
$ git remote add origin {Git Repository 주소}
$ git config --list
결과 중 user.email과 user.name 항목을 아래 push 단계에서 사용하게 된다.
$ git push origin master
Password : Git내의 personal access token 값
다 알맞게 입력하면, 아래와 같이 잘 push가 된다!
$ git push origin master
$ git pull origin master