git remote add origin
git push -u origin master
此時可能會報錯
fatal: not a git repository (or any of the parent directories): .git
輸入下面**即可
git init
在和遠端倉庫關聯後,我們通過 push 命令將本地倉庫的檔案推送到線上倉庫時,可能會出現下面錯誤:
d:\github\git>git push -u origin master
error: src refspec master does not match any
error: failed to push some refs to ''
常見原因:
1.本地git倉庫目錄下為空
2.本地倉庫add後未commit
3.git init錯誤
用命令 git add + 檔名,把檔案新增到倉庫就行 ,然後正常push就好。
git add readme.md
git commit -m "first commit"
git push -u origin master
至此完成github專案建立,以及上傳自己的**
文末獻上github常用命令(注:此圖**於下圖**)
如何建立github專案
git 上傳專案到github
1 error src refspec master does not match any 這個問題,我之前也遇到過,這次又遇到了只是時間間隔比較長了,為了防止以後再遇到類似問題,還是把這個方法簡單記錄在此。當然,是通過搜尋引擎找到的答案,開始用谷歌,我以為stackoverflow會很權威的,結果...
git 上傳專案到github
1.github上建立倉庫 2.github倉庫位址 3.在本地專案檔案git base here 4.然後git clone github 上的倉庫位址 5.把除倉庫外的檔案 也就是自己的專案 拷貝到github裡 手動複製貼上 6.cd 新出現的資料夾 7.git add a 8.git com...
git上傳專案到github
1.建立本地倉庫 git init2.檔案新增到暫存區 git add 3.提交 git commit m 注釋 4.github上建立專案,複製位址,例如 5.本地倉庫關聯到github上 git remote add origin如果出現 fatel remote origin already ...