1.github上建立倉庫
2. github倉庫位址
3.在本地專案檔案git base here
4. 然後git clone 『』
github
上的倉庫位址『』
5. 把除倉庫外的檔案(也就是自己的專案)拷貝到github裡
(手動複製貼上
)6. cd
『新出現的資料夾
』7.
git add -a
8. git commit -m
『提交資訊
』9.
git push -u origin master(把本地倉庫上傳到
github
倉庫裡)
備註:(可以通過git status 檢視具體操作的資訊,如果前面有上傳過乙個專案,再次上傳新專案到github新倉庫裡)
提示出錯資訊:fatal: remote origin already exists.
解決辦法如下:
1、先輸入
$ git remote rm origin
『github倉庫位址
』2、再輸入$ git remote add origin
『github倉庫位址
』就不會報錯了!
寫的比較簡單,希望可以幫到你!
git 上傳專案到github
1 error src refspec master does not match any 這個問題,我之前也遇到過,這次又遇到了只是時間間隔比較長了,為了防止以後再遇到類似問題,還是把這個方法簡單記錄在此。當然,是通過搜尋引擎找到的答案,開始用谷歌,我以為stackoverflow會很權威的,結果...
git上傳專案到github
git remote add origin git push u origin master 此時可能會報錯 fatal not a git repository or any of the parent directories git輸入下面 即可 git init在和遠端倉庫關聯後,我們通過 p...
git上傳專案到github
1.建立本地倉庫 git init2.檔案新增到暫存區 git add 3.提交 git commit m 注釋 4.github上建立專案,複製位址,例如 5.本地倉庫關聯到github上 git remote add origin如果出現 fatel remote origin already ...