Github에 Local Project를 처음 올릴 때, Command line을 통하여 올리는 방법


- github.com 에서 프로젝트를 생성한 뒤, repository 주소를 알아놓음


- Terminal 프로그램에서 Local Project 폴더로 이동한 후, 다음과 같이 명령어를 실행


git init
git add .
git commit -m "[My Message]"
git remote add origin [address of git repository]
git push origin master


+ Recent posts