git push 报错git: push-u is not a git command. See 'git --help'.

问题:

在使用git push origin master将本地修改同步到github仓库的时候,出错

解决方案:

1、运行 git config --list,部分输出如下:

git push 报错git: push-u is not a git command. See 'git --help'._第1张图片

2)运行git config --global --unset credential.helper,之后再git push orgin master即可。

 

参考:https://blog.csdn.net/weixin_39278265/article/details/102248258

 

 

你可能感兴趣的:(git)