📌  相关文章
📜  如何在我之前的提交中再添加一个文件 - Shell-Bash (1)

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

如何在我之前的提交中再添加一个文件 - Shell-Bash

在 Git 中,我们可以使用 git commit --amend 命令来修改之前的提交。在本文中,我们将介绍如何在已有的提交中添加一个新文件。

步骤
  1. 在本地创建需要添加的文件,并将其保存在 Git 仓库目录中。
$ echo "Hello, world!" > new_file.txt
  1. 添加文件到 Git 的暂存区。
$ git add new_file.txt
  1. 执行 git commit --amend 命令来修改之前的提交。
$ git commit --amend

这将会打开默认编辑器,并显示需要提交的内容。将新添加的文件添加到提交中,例如:

add new file

This is a sample commit that adds a new file.

- Added new_file.txt
  1. 保存更改并退出编辑器。

  2. 推送到远程仓库。

$ git push -f origin branch_name
结论

git commit --amend 命令是一个强大的工具,可以让我们修改之前的提交。使用上述步骤,您可轻松地将新添加的文件添加到先前的提交中。