Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想知道是否可以创建一个仅包含注释的 git 提交,而不需要任何实际的文件更改。
当人们只是对提交/分支进行投票时,这在进行代码审查时可能很有用
是的,您可以使用:
git commit --allow-empty
从git-commit(1)手册页:
git-commit(1)
--allow-empty 通常记录与其唯一父提交具有完全相同的树的提交是错误的,并且该命令会阻止您进行此类提交。此选项绕过安全性,主要供外部 SCM 接口脚本使用。
但是你确定你实际上不只是想要一个标签吗?