Sunday, December 11, 2011

GIT 로컬 소스에서 부터 원격 서버 설정.

로컬에 있는 소스를 원격에 업로드/임포트(import)해서 초기화 하는 방법은 아래와 같다.

git init

git add .

git commit -m ‘initial import’

git remote add origin <<remote url.git>>

git push origin master

http://stackoverflow.com/questions/4658606/import-existing-source-code-to-github

No comments:

Post a Comment