1. 配置git
windows->preferences->team->git->congfiguration
user:add entry,添加内容如下
2. 创建仓库
2.1登陆github账号,新建仓库,new repositories
2.2仓库创建成功后,点击 HTTP ,复制其中的地址,后面将会用到
3. 在eclipse创建本地git仓库
在eclipse选择一个项目->右击-team->share project
create a git repository->选择仓库地址
4. commit项目到本地gith到本地仓库
选中项目-> 右击->team-commit
在unstaged changes选择要提交的文件->右击->add to index->填写commit message->commit
5. push到git远程仓库
选中项目->右击->team->remote->push->填写url(2中创建的仓库的http地址,git账号、密码->一路next、finish
网友评论