IDE & Build/Git
git - eclipse에서 현재 프로젝트를 git으로 공유
linuxism
2015. 4. 26. 22:43
* 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