当你在使用Git进行版本控制时遇到“git author identity unknown”的错误,这通常意味着Git无法确定提交(commit)的作者身份。这个问题通常是因为没有为Git配置全局或本地的用户名(user.name)和邮箱(user.email)所导致的。以下是一些解决这个问题的步骤: 确认Git配置情况: 首先,你需要检查是否已经为Git配置了用
git 在刚开始使用时需要设置 user.name, user.email, 不然 git commint的时候会报错Author identity unknown,具体设置步骤: git config --global user.name'your name'git config--global user.email'your email' 设置完后可以用以下命令查看设置结果; git config --list 表示设置成功;此时使用 git commit -m'...
D:\Git\tmp\practice>git commit -m"add all files into repository"Author identity unknown*** Please tell mewhoyou 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 onlyin...
“ Author identity unknown *** Please tell me who you are. Run git config --global user.email "you@example.com" git config --global "Your Name" to set your account's default identity. Omit --global to set the identity only in this repository. fatal: empty ident name (for <2454373641...
commit changes via Source Control Get this error: *** 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. ...
git commit -m "create readme.md" 提示输入作者信息 $ git commit -m "create readme.md" 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. Om...
Show no parents before all of its children are shown, but otherwise show commits in the author timestamp order. --topo-order Show no parents before all of its children are shown, and avoid showing commits on multiple lines of history intermixed. For example, in a commit history like this...
If `user.name` and `user.email` have not been configured and the user invokes: git commit --author=... without specifying the committer identity, then Git errors out with a message asking the user to configure `user.name` and `user.email` but doesn't tell the user which attribution wa...
Git needs to know your username to associate commits with an identity. If you have not set your username, GoLand will prompt you to specify it when you first attempt to commit changes. Open the Terminal and execute one of the following commands: To set a name for every Git repository on...
1、git使用commit命令后显示 Author identity unknown 的解决方法 重新输入命令: 先输入:$ git config --global user.name“你的名字” 回车后, 再输入:$ git config --global user.email“你的邮箱地址” 完成后再提交就没问题了。 可输入git status查看状态 ...