Teamcity VCS 報錯說明
本文地址:https://www.cnblogs.com/slankka/p/14778184.html
困擾兩年多的問題,終於被解決。
git-upload-pack not permitted on "https://xxxx.com/slankka.git/"
說明
- 100% 確定git賬戶有此項目的權限
- 100% 確定git的賬戶名,AccessToken / password 沒有錯誤
- VCS 報錯 git-upload-pack not permitted
解決方法
檢查git配置
git config --global -e
如果
[credential]
helper = store
則清除此配置:執行
git config --global --unset credential.helper
過幾分鍾,再試Teamcity 已經正常!
聲明:本內容原創,轉載請注明出處。