OpenHUTB / carla_cpp

C++ 文档
https://openhutb.github.io/carla_cpp/
18 stars 194 forks source link

在输入git commit-m "userman"时出现这个该怎么办 #191

Open Mikecbk opened 1 month ago

Mikecbk commented 1 month ago

$ git commit -m “username” 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. Omit --global to set the identity only in this repository.

fatal: unable to auto-detect email address (got '27495@▒▒֪▒▒▒▒▒▒.(none)')

在输入git commit-m "userman"时出现这个该怎么办

donghaiwang commented 1 month ago

错误信息中给了解决办法,需要配置github的邮箱和用户名:

` git config --global user.email "you@example.com"

git config --global user.name "Your Name" `