Git init - 아직 버전관리를 하지 않는 프로젝트 폴더를 Git 저장소로 만들 수 있다.
Git clone - Remote 저장소를 로컬에 복사하여 사용할 수 있다.
git init 이 명령어 끝
반드시 폴더 안으로 들어가서 git init을 실행시켜야 한다!
이러면 git repository가 됨.
레포시토리 주소에 규칙이 있다. (github)
개인 : http://github.com/<user_name>/<project_name>.git
조직 : http://github.com/<organization_>/<project_name>.git
문법 : git clone <URL_> git clone http://github.com/<user_name>/<project_name>.git
Git clone 시 권한 확인을 반복하지 않기 위함.
git clone http://<토큰>@github.com/<user_name>/<project_name>.git
git bash에서 cd .. 하면 상위폴더로 이동!

토큰 값 다시 볼 수 없다!! 저장해놓기!!! 매우 중요!!!
