git 上傳專案到github

2021-07-22 03:58:48 字數 986 閱讀 3897

1 error:src refspec master does not match any

這個問題,我之前也遇到過,這次又遇到了只是時間間隔比較長了,為了防止以後再遇到類似問題,還是把這個方法簡單記錄在此。

當然,是通過搜尋引擎找到的答案,開始用谷歌,我以為stackoverflow會很權威的,結果在這上面沒有找到合適的。

問題產生

原因分析

引起該錯誤的原因是,目錄中沒有檔案,空目錄是不能提交上去的

解決方法

touch readme

git add readme

git commit -m

'first commit'

git push origin master

來自:

實際上

git init
這一步之後建立了乙個名為.git的資料夾,不過它在預設狀態下是隱藏的,系統將隱藏資料夾顯示出來,可以看到有這樣乙個資料夾。

github上傳專案方法:

在你的電腦上裝好git

大致流程是:

1、在github上建立專案

2、使用git clone 轉殖到本地

3、編輯專案

4、git add . (將改動新增到暫存區)

5、git commit -m "提交說明"

6、git push origin master 將本地更改推送到遠端master分支。

這樣你就完成了向遠端倉庫的推送。

如果在github的remote上已經有了檔案,會出現錯誤。此時應當先pull一下,即:

git pull origin master
然後再進行:

git push origin master

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

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 ...