gitee上傳程式碼https返回403報錯

生活的艺术發表於2024-04-21

分析原因

如果採用https方法上傳程式碼,應該使用的是密碼方式。如果報403問題,可能是本地快取密碼有問題。

解決辦法

# 清理密碼快取
git config --local --unset credential.helper
git config --global --unset credential.helper
git config --system --unset credential.helper

# 上傳程式碼
git push

# 設定快取密碼
git config --global credential.helper store

相關文章