github(https://github.com/)에서 계정생성
새로운 repository 생성
git 다운로드
git config --global user.name 아이디
user.email 이메일
user.password 토큰
(+ git config --list 확인)
(+ 토큰 할때 repo권한 확인)
프로젝트 폴더로 이동
git init (맨 처음 프로젝트를 올리기 위해)
git add . (git add: 어떤 파일을 올릴지 찾아보겠다 & . : 모든 파일을 올리겠다. )
(+ git status (상태를 알려주는 명령어, 필수x))
(+ git remote -v (연결주소 확인))
(+ git remote remove origin (현재 연결된 주소 끊기))