2012年5月1日 星期二

[ Eclipse Plugin ] EGit : 從 Github Import 專案到本地端


前言 :
這裡要介紹如何透過 Eclipse 的 plugin EGit 來從 Github import 專案到本地端.

Create Repository in Github :
在一開始你必須先在 Github 建立一個 Repository. 有關建立的過程說明可以參考 Create Repository at GitHub. 這裡假設你已經完成建立一個 Repository 且其 HTTP 的路徑為https://johnklee@github.com/johnklee/CRFPrac.git

安裝 EGit :
你可以直接使用 Eclipse (這裡使用的 Eclipse 版本 Version: 3.7.2) 的選單 : Help > Install New Software

(在出現視窗的 Work with 輸入 EGit install repository URL path. 可以參考這裡)

接著按照指示一步步便可完成安裝 EGit plugin 到 Eclipse. 而在使用 EGit 之前還需要一些簡單的設定, 可以參考這裡.

Import from Github :
接著我們要從 Github 上 import 專案 CRFPrac 到本地端. 詳細步驟請參考下面說明 :
Step1 : 請執行 Eclipse 選單 File > Import


Step2 : 再出現視窗選擇 Git > Projects from Git


Step3 : 在出現視窗選擇 URI 並點擊 "Next"


Step4 : 接著請到 Github 專案 CRFPrac, 選擇使用 HTTP 並複製其專案對應的 URL : https://johnklee@github.com/johnklee/CRFPrac.git


Step5 : 在 Step3 後出現的視窗填入 Step4 的 URL 後點擊 "Next"


Step6 : 在出現視窗點擊 "Next" (預設是 master 的 branch)


Step7 : 選擇 Local repository 的路徑後, 點擊 "Next"


Step8 : 選擇 "Import from existing project" 並點擊 "Next"

(這邊的 CRFPrac 專案有把 .project 等系統檔上傳到 Github, 所以可以使用選項 "Import from existing project"!)

Step9 : 在上一步後出現下面視窗, 點擊 "Finish" 完成專案 CRFPrac import!


Step10 : 最後你應該發現專案成功 import 到 Eclipse 的 Package Explorer


Supplement :
EGit Document - User Guide
If you're new to Git or distributed version control systems generally, then you might want to read Git for Eclipse Users first. If you need more details and background read the Git Community Book or Git Pro...

[Git Pro] Ch1 : Getting Started
在本章會透過一些版本控制的緣由說明, 來引入 Git 工具的使用. 包括為什麼你需要 Git, 如何取得並安裝與開始使用它...

[Git Pro] Ch2 : Git Basics - Part 1
這邊介紹如何初始化 Git 的 repository 與基本的指令操作如 commit, status, add 與 設定那些檔案要 track 那些不要...

[Git Pro] Ch2 : Git Basics - Part 2
這邊介紹命令讓你可以檢視之前提交的紀錄與如何對已經 commit 的檔案 undo...

沒有留言:

張貼留言

[Git 常見問題] error: The following untracked working tree files would be overwritten by merge

  Source From  Here 方案1: // x -----删除忽略文件已经对 git 来说不识别的文件 // d -----删除未被添加到 git 的路径中的文件 // f -----强制运行 #   git clean -d -fx 方案2: 今天在服务器上  gi...