pycharm git工具與coding.net結合
阿新 • • 發佈:2018-12-14
前提:coding.net中的專案是私密專案
問題描述:在使用pycharm自帶的git工具clone(或者push)程式碼時出現 錯誤如下:Push failed: Failed with error: unable to access 'https://git.coding.net/xxx.git/': The requested URL returned error: 403
原因:這是由於 私有專案,沒有許可權,需要輸入使用者名稱密碼。
解決方法如下:在.git資料夾下的config檔案中遠端倉庫url新增username:[email protected],如下
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [remote "gitbook"] url = https://username:[email protected]/alleniverson/mybook.git fetch = +refs/heads/:refs/remotes/gitbook/
這裡還有一個問題就是當用戶名使用的是qq郵箱時還是出現上述錯誤,所以我採用的是另外的登入賬戶。