1、打开help的Install New software
2、点击ADD输入如下图
EGit插件地址:http://download.eclipse.org/egit/updates
下载完成后重启eclipse
3、
在Eclipse中配置EGit
准备工作:需要在https://github.com 上注册账号
window>Preferences > Team > Git > Configuration
这里的user.name 是你在https://github.com上注册用户名
这里的user.email 是你在https://github.com上注册邮箱地址
分别两次输入key为user.name和user.email
然后apply and close
4、新建项目,并将代码提交到本地的GIT仓库中
新建项目Javaproject,并新建Hello.java类
5、将Javaproject项目提交到本地仓库
6、提交代码到本地仓库
7、将本地代码提交到远程的GIT仓库中
首先需要在github上创建好仓库,并获取远程仓库地址
接着将项目push到远程仓库
输入远程仓库地址、github用户名和密码,再next
点击Add Spec
最好Finish,在远程仓库地址上查看是否已经上传本地仓库的项目。