1.在https://github.com new repositoryandroid
2.在eclipse中new project 好比:Test項目git
3.右擊"Test"->Team->share project... ->select a repository type:Gitgithub
勾選 Use or create repository in parent folder of projectwindows
點擊 Create Repository -> Finisheclipse
這時候打開在workspace中的Test目錄會發現多了一個.git文件夾。fetch
4.右擊"Test"->Team->commit 本地提交網站
5.再右擊"Test"->Team->Remote->Pushurl
URI就是github上面指定的地址: spa
username和password就是github網站的用戶名和密碼.net
5.finish
source ref 選擇 refs/heads/master destination ref會自動填充,點擊 Add Spec勾選Focus update
開始提交。
6.能夠刷新網頁查看提交的代碼了。。。
另外一端用git下載 不囉嗦了就是 import -- git -- projects from Git -- URL --- 寫上URl User和Password就可
代碼更改後,commit 而後 remote -- push 若是提示錯誤
cannot open git-upload-pack問題打開eclipse中的windows-->Preferences-->Team-->Git-->Configuration-->User Settings.而後點Add Entry新建一個鍵值對,輸入http.sslVerify=false。
代碼更新若是pull 錯誤 The current branch is not configured for pull No value for key branch.master.merge found in config
找到工程下 .git文件找到 config
repositoryformatversion = 0
filemode = false
logallrefupdates = true
[branch "master"]
remote = origin
merge = refs/heads/master
[remote "origin"]
url = https://git.oschina.net/cicue/android.git (修改成本身的url)
fetch = +refs/heads/*:refs/remotes/origin/*
保存後 從新pull能夠更新代碼