git 中 "Clearcase Stream Attribute" 的等价物

What is equivalent of "Clearcase Stream Attribute" in git

我们使用 ClearCase UCM 并慢慢切换到 git。

我们大量使用 ClearCase attributes。例如将 MailTo 属性添加到 Stream。我们查询并发送电子邮件以防构建失败或 SCM activity 喜欢新的推荐基线。

git中是否有类似的结构?它是什么?

有两个:

  • 最接近的是 git notes,它可以将 "note" 附加到对象上,而不接触对象本身(即不修改它们的 SHA1)。
    将注释附加到 git 标签有点类似于 add an attributes to an UCM baseline.
    在“notes to self”中查看更多信息。

  • 另一个是 git branch description (but, as Joe ,该描述未推送到远程仓库)

    git branch --edit-description
    

can be used to add descriptive text to explain what a topic branch is about.