前提:coding.net中的項目是私密項目git
問題描述:在使用pycharm自帶的git工具clone(或者push)代碼時出現 錯誤以下:
Push failed: Failed with error: unable to access 'https://git.coding.net/xxx.git/': The requested URL returned error: 403工具
緣由:這是因爲 私有項目,沒有權限,須要輸入用戶名密碼。fetch
解決方法以下:
在.git文件夾下的config文件中遠程倉庫url添加username:password@,以下url
[core] repositoryformatversion = 0 filemode = false bare = false logallrefupdates = true symlinks = false ignorecase = true [remote "gitbook"] url = https://username:password@git.gitbook.com/alleniverson/mybook.git fetch = +refs/heads/:refs/remotes/gitbook/
這裏還有一個問題就是當用戶名使用的是qq郵箱時仍是出現上述錯誤,因此我採用的是另外的登陸帳戶。.net