1. 程式人生 > >使用Intellij IDEA上傳本地專案到遠端Git倉庫

使用Intellij IDEA上傳本地專案到遠端Git倉庫

一.專案本地Git提交


1.建立本地倉庫

 

2.提交程式碼到git

 

右鍵點選src或程式碼檔案,Git -- Add -- Commit(先AddCommit

 

二.專案遠端提交

1.在Github上建立倉庫

2.在本地配置遠端倉庫

cd本地倉庫目錄
git remote add origin你專案的地址
git push -u origin master
然後回到Intellij IDEA環境中在專案上單擊右鍵,選擇同步當前專案選單:Synchronize 'TestProject';
再次操作Intellij IDEA,在專案上單擊右鍵選擇Git相關操作:Git -> Repository -> Branches -> origin/master -> Checkout as new local branch。
到此你就可以使用Intellij IDEA的Git外掛將本地與遠端倉庫中的程式碼進行pull/push的操作了。


參考文章:

http://blog.csdn.net/u010237107/article/details/50910879

http://blog.csdn.net/lyhhj/article/details/47102143