git 提交401错误

git 401错误是没有权限,就是提交不上

因为 我本地有一个全局git账号是公司的,但是 我现在要提交的并不是公司账号所属的git

打开当前git项目中的 .git项目,打开config 文件

有一句是这样的

[remote "origin"]
    url = http://47.xxx.xx.xxx:3000/xxxxx/data_collection
    fetch = +refs/heads/*:refs/remotes/origin/*

改为

[remote "origin"]
    url = http://用户名:密码@47.xxx.xx.xxx:3000/xxxxx/data_collection
    fetch = +refs/heads/*:refs/remotes/origin/*

使用 用户名+密码提交就能提交成功了

你可能感兴趣的:(日常问题)