1. 程式人生 > >關於git上傳文件的一個小問題

關於git上傳文件的一個小問題

you 文件夾 epo use eas bsp pan ide clas

*** 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上傳文件的一個小問題