1

We use ClearCase UCM and slowly switching to git.

We use ClearCase attributes heavily. For example MailTo attribute added to a Stream. We query this and send emails in case build failure or SCM activity like new recommended baselines.

Is there a similar construct in git? What is it?

Jayan
  • 18,003
  • 15
  • 89
  • 143

1 Answers1

2

There are two:

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

Community
  • 1
  • 1
VonC
  • 1,262,500
  • 529
  • 4,410
  • 5,250
  • 2
    To add context from another of your answers, note that [branch descriptions aren't pushed](http://stackoverflow.com/questions/10998142/git-pushing-branch-descriptions-to-remote) to a remote repository (but [notes can be](http://stackoverflow.com/questions/18268986/git-how-to-push-messages-added-by-git-notes-to-the-central-git-server)). – Joe Feb 14 '15 at 10:04
  • @Joe true, I have included your comment in the answer. – VonC Feb 14 '15 at 10:29