git 删除远端分支
git branch -r -d origin/远端分支名称
git 克隆远端 http连接:git clone with http
报错:
git clone http://000.000.000.000:port/pathname/xxxx.git
Cloning into 'xxxx'...
fatal: Unencrypted HTTP is not supported for GitHub. Ensure the repository remote URL is using HTTPS.
Username for 'http://000.000.000.000:port':
Password for 'http://000.000.000.000:port':
remote: HTTP Basic: Access denied
fatal: Authentication failed for 'http://000.000.000.000:port/pathname/xxxx.git/'
解决:
git config --system --unset credential.helper
参考链接