关于git上传文件的一个小问题
Posted QW-lzm
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了关于git上传文件的一个小问题相关的知识,希望对你有一定的参考价值。
*** Please tell me who you are.
Run
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
to set your account‘s default identity.
Omit --global to set the identity only in this repository.
解决:
在.git文件夹执行
git config user.name "Your Name"
git config user.email "[email protected]"
或全局配置
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
以上是关于关于git上传文件的一个小问题的主要内容,如果未能解决你的问题,请参考以下文章
VSCode自定义代码片段15——git命令操作一个完整流程