gitlab上傳問題記錄

海_纳百川發表於2024-07-11

1.如果引用了子模組,關於上傳子模組

必須要有.gitmodule檔案,所以先建立

新增子模組
git submodule add <子模組倉庫的URL> <本地路徑>
初始化子模組:
git submodule init
更新子模組:
git submodule update
或者你可以用一條命令完成初始化和更新:
git submodule update --init
如果子模組中還有子模組,你需要遞迴地更新所有子模組:
git submodule update --init --recursive

2.本地更新origin遠端分支(fetch是拉取,遠端分支預設名是origin)

git fetch origin

3.git push 時如果提示輸入gitlab登入使用者的密碼,注意不要輸錯了,如果輸錯,需要取windows控制皮膚->使用者賬戶和家庭安全->憑據管理器中進行修改

相關文章