1、巧妇难为无米之炊,所以首先我们要在eclipse中安装git插件:Help ->Install New Software,点击add,然后在新弹窗中输入name和url,如下图所示:
点击OK,安装git插件。
2、git插件安装完成后,还需要对git进行简单的配置:Preferences->Team->Git->Configuration
点击Add Entry,输入key:user.name vlaue:yourname和key:user.email value:youremail
3、git配置完成,接下来就是从远程仓库clone工程了:Windows->Show View ->Other->Git->GIt Repositories(这里是将git Repositories添加到视图中,接下来在视图栏就会看到Git Repositories:
点击Clone a Git repository,输入被clone项目的url进行clone即可,然后Git repositories如下图所示:
,接下来将Git repositories中的项目导入到eclipse中来:file->import->Git->project form Git ......导入成功。。