📜  git commit -m 作者身份未知 - Shell-Bash (1)

📅  最后修改于: 2023-12-03 15:15:16.797000             🧑  作者: Mango

Git Commit -m 作者身份未知 - Shell/Bash

作为一个程序员,你是否在使用 Git 进行代码版本控制时遇到过一些像这样的错误信息?

*** 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 中的身份信息,所以不能进行代码提交。在这种情况下,你可以通过使用 git commit -m 命令来提交代码,并且在提交信息中指定作者身份未知的信息。

命令语法

git commit -m "<message>"

命令参数

-m "<message>":指定提交信息。

使用示例

首先,你需要使用 git init 命令在你的项目目录中初始化 Git 仓库。

$ cd ~/my-project
$ git init

然后,你可以创建一个新的文件并将其添加到 Git 中。

$ echo "Hello, World!" > hello.txt
$ git add hello.txt

现在,你可以使用 git commit -m 命令提交代码并指定作者身份未知的信息。

$ git commit -m "作者身份未知 - Shell/Bash: Add hello.txt file"

这将提交包含以下信息的代码更改:

作者身份未知 - Shell/Bash: Add hello.txt file
结论

通过本文,你应该已经了解了 git commit -m 命令的使用方法,以及如何在提交信息中指定作者身份未知的信息。记住,在提交代码之前,你需要设置你的身份信息,以便其他人知道是谁提交了这些更改。