GIT提交错误汇总及解决方案

使用git commit 命令提交跟踪的新文件时 提示 *** Please tell me who you are.

解决方案:执行下列两行命令即可

git config --global user.email "你自己的邮箱"
git config --global user.name "邮箱的用户名"

git提交远程报错[rejected] master -> master (fetch first)

https://blog.csdn.net/ezconn/article/details/81872785

git提交本地项目到码云仓库

https://www.jianshu.com/p/3e0b213ab03d

git 合并分支

https://blog.csdn.net/wenjiusui8083/article/details/80167073

 

 

你可能感兴趣的:(技术分享)