VS Code的“提交(修改)”和“提交(签名)”有什么区别?

时间:2019-03-12 05:06:16

标签: git version-control visual-studio-code

带有这些按钮的图片

enter image description here

嗨,我开始使用VS Code版本控制。

我知道“全部提交”和“分段提交”之间的区别

但无法确定提交(修改)和提交(已签名)

我检查了VS Code版本控制文档,但没有解释...

我想知道他们是什么以及何时使用它。

1 个答案:

答案 0 :(得分:1)

这些不是VS Code功能,而仅仅是Git提交选项。

已签名:在提交日志消息的末尾添加“已签名”行。

参考:https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---signoff

修改:实际上是修改,已经在当前分支上提交了。

参考:https://git-scm.com/docs/git-commit#Documentation/git-commit.txt---amend