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
'컴퓨터공학 > Tool(IDE, Git, Etc)' 카테고리의 다른 글
[Git] 프로젝트 폴더에서 현재 업로드 되어있는 파일을 제외한 모든 파일을 ignore 하기 (0) | 2017.05.28 |
---|---|
[Git] git으로 코드 작성 시 원하지 않는 파일을 업로드 안하기 (0) | 2017.05.28 |
[Scala] 개발환경 설정 (0) | 2016.03.08 |
sunlight highlighter 사용시 < > 입력해야 할 경우 (0) | 2013.01.11 |
Convention over Configuration (0) | 2013.01.05 |