Git 提交
Git 提交
既然我们已经完成了工作,我们准备从 暂存
移动到 提交
我们的仓库。
添加提交可以跟踪我们在工作过程中的进度和更改。Git 将每个 提交
视为更改点或“保存点”。这是项目中的一个点,如果发现错误或想要进行更改,您可以返回到该点。
当我们 提交
时,我们应该始终包含一条消息。
通过为每个 提交
添加清晰的消息,您(以及其他人)可以轻松地查看发生了哪些更改以及何时发生。
示例
git commit -m "First release of Hello World!"
[master (root-commit) 221ec6e] First release of Hello World!
3 files changed, 26 insertions(+)
create mode 100644 README.md
create mode 100644 bluestyle.css
create mode 100644 index.html
commit
命令执行提交,而 -m "message"
添加消息。
暂存区已提交到我们的仓库,消息为
"Hello World 的第一个版本!"
跳过暂存区的 Git 提交
有时,当您进行小的更改时,使用暂存区似乎是一种浪费时间。可以跳过暂存区直接提交更改。 -a
选项会自动暂存所有已更改且已跟踪的文件。
让我们在 index.html 中添加一个小更新
示例
<!DOCTYPE html>
<html>
<head>
<title>Hello World!</title>
<link rel="stylesheet" href="bluestyle.css">
</head>
<body>
<h1>Hello world!</h1>
<p>这是我的新 Git 仓库中的第一个文件。</p>
<p>我们在文件里添加了一行!</p>
</body>
</html>
并检查我们仓库的状态。但是这次,我们将使用 --short 选项以更简洁的方式查看更改
示例
git status --short
M index.html
注意: 简短的状态标志为
- ?? - 未跟踪的文件
- A - 添加到暂存区的文件
- M - 已修改的文件
- D - 已删除的文件
我们看到我们期望的文件已修改。所以让我们直接提交它
示例
git commit -a -m "Updated index.html with a new line"
[master 09f4acd] Updated index.html with a new line
1 file changed, 1 insertion(+)
警告: 通常不建议跳过暂存区。
跳过暂存步骤有时会导致您包含不需要的更改。
Git 提交日志
要查看仓库的提交历史记录,可以使用 log
命令
示例
git log
commit 09f4acd3f8836b7f6fc44ad9e012f82faf861803 (HEAD -> master)
Author: w3schools-test <[email protected]>
Date: Fri Mar 26 09:35:54 2021 +0100
Updated index.html with a new line
commit 221ec6e10aeedbfd02b85264087cd9adc18e4b26
Author: w3schools-test <[email protected]>
Date: Fri Mar 26 09:13:07 2021 +0100
First release of Hello World!