使用Eclipse上傳/下載Git項目 前提: + Eclipse已安裝EGit插件 + 已擁有GitLab/GitHub賬號 SSH方式 配置SSH授權 1. 本地生成授權Key Eclipse,選擇菜單: 2. 遠程托管配置本地授權的Public Key 進入GitLab管理首頁, 在 中輸入剛 ...
使用Eclipse上傳/下載Git項目
前提:
- Eclipse已安裝EGit插件
- 已擁有GitLab / GitHub / 其它Git托管服務賬號
SSH方式
配置
配置Git信息
- 配置用戶信息
Eclipse,選擇菜單:Preferences > Team > Git > Configuration > User Settings > Add Entry..
Key
: user.name,Value
: usernameKey
: user.email,Value
: [email protected]
可自定義帶個人特征的用戶信息,與Git托管服務賬號無關
配置SSH授權
- 本地生成授權Key
Eclipse,選擇菜單:Window > Preferences > General > Network Connections > SSH2
,進入SSH2
對話框- 配置SSH Home路徑
選擇General > SSH2 home(輸入ssh信息保存路徑: I:\WorkSpace\CODE\git\.ssh) > Apply
- 生成授權Key
選擇Key Management > Generate RSA key.. > Passphrase(輸入密碼,將在使用密鑰時使用) > Save Private Key.. > Apply
- 配置Private Key
選擇General > Private Key(選擇剛生成的私匙路徑: I:\WorkSpace\CODE\git\.ssh\id_rsa) > Apply
- 配置SSH Home路徑
- 遠程托管配置本地授權的Public Key
進入GitLab管理首頁,Profile Settings > SSH keys > Add an SSH key
在Key
中輸入剛纔生成的Public Key
上傳項目
Commit至本地Git倉庫
- 創建本地Git倉庫
右鍵工程,選擇菜單:Team > Share Project > Git
在Configure Git Repository
對話框中,依次選擇:Use or create repository in parent folder of project > 勾選Project列表 > Create Repository > Finish
- Commit至本地Git倉庫
右鍵工程,選擇菜單:Team > Commit
在Commit Changes
對話框中,Commit message
填:初始導入;勾選Files列表中要提交的文件。
點擊commit
進行提交
Push至遠程Git倉庫
- 創建Git遠程托管項目
在GitLab管理首頁依次選擇:Projects > New Project
在Project path
填項目名稱,然後選擇Create project
。
創建成功,會顯示項目相關信息及Push方法。其中有SSH連接,如:[email protected]:user/project.git
- Push至遠程Git倉庫
右鍵工程,選擇菜單:Team > Push Branch 'master'..
(或Team > Remote > Push..
)
在Push Branch master
對話框中,Location > URI
填寫1. 創建Git遠程托管項目
得到的SSH連接:[email protected]:user/project.git
點擊Next > Next > Finish
如果在生成SSH授權Key時,有輸入Passphrase
密碼值,則此過程會彈出提示要求輸入
開始Pushing to remote repositories
,等待上傳
點擊OK
完成
下載項目
- Eclipse,選擇菜單:
File > Import.. > Git > Projects from Git > Clone URI
,
在Import Projects from Git
對話框中,Location > URI
填寫Git托管項目的SSH連接:[email protected]:user/project.git
,點擊Next
如果在生成SSH授權Key時,有輸入Passphrase
密碼值,則此過程會彈出提示要求輸入 - 分支選擇:選擇
master
,點擊Next
- 配置本地存儲路徑:選好存儲目錄,點擊
Next
- 選擇一個用來導入項目的嚮導:選擇
Import existing Eclipse projects
,點擊Next
- 導入項目:從
Projects
列表中選擇要導入的項目,點擊Finish
參考
http://www.tuicool.com/articles/Ar6rMfm
http://wiki.eclipse.org/EGit/User_Guide
http://yufenfei.iteye.com/blog/1750124
http://blog.csdn.net/hil2000/article/details/8566456
http://www.cnblogs.com/zhxiaomiao/archive/2013/05/16/3081148.html
http://www.cnblogs.com/yejiurui/archive/2013/07/29/3223153.html