初始化错误 Successfully created project ‘PythonStudy’ on GitHub, but initial commit failed: Author identity unknown *** Please tell me who you are. Run git config --global user.email “you@example.com” git config --global user.name “Your Name” to set your account’s default identity....
在.py 文件所在文件夹内打开terminal git init 形成.git文件 git status 检查是否存在commits git add your file.py git commit -m "Initial commit"//会出现Author identity unknown 6. git config --global user.email "you@example.com" git config --global user.name "Your Name"...