先建立Maven Webapp項目git
圖文詳解MyEclipse中新建Maven webapp項目的步驟(很詳細)github
在web項目的路徑中右鍵(前提是你機器已經裝了git)「Git Init Here」,會生成一個.git文件夾web
接着在myeclipse中右鍵項目,選擇Team>Share Project>git>選擇有.git目錄的路徑,也就是上面的文件目錄,注意還要修改生成的.gitigore,避免上傳沒必要要的文件windows
右鍵,選擇Team>Commit,勾選文件後選擇CommitAndPush,填寫GitHub上的項目https連接,輸入賬號密碼就OK了app
注意:若是第二次push到github上myeclipse須要重複輸入賬號密碼的話,能夠按照如下方法解決eclipse
windows>preferences>team>git>configuration>respository settings,選擇對應的項目,打開Location文件修改爲以下內容:webapp
[core] repositoryformatversion = 0 filemode = false logallrefupdates = true [remote "origin"] url = https://git.oschina.net/herryandalice/JavaStudy.git fetch = +refs/heads/*:refs/remotes/origin/* [branch "master"] remote = origin merge = refs/heads/master
其中url對應的是項目的地址fetch