* create git repository
e.g. github, bitbucket
* command line
Set up your local directory
$ cd /path/to/your/project
$ git init
$ git remote add origin gitURL
Create your first file, commit, and push
$ git add -A
$ git commit -m 'Initial commit'
$ git push -u origin master
* eclipse
Share Project
Team > Share Project
'IDE & Build > Git' 카테고리의 다른 글
git - eclipse commit comment template (0) | 2016.01.03 |
---|---|
git - gitignore (0) | 2015.12.16 |
git - eclipse에서 branch 생성하기 (0) | 2015.08.11 |