[git-users] Custom commit property?

2010-01-01 Thread Trans
Is there are way to add a custom property to commits? I want to use it to track commit "type" For example, I use 'admin', 'doc', 'major', 'minor', and 'bug' to classify my commits. Thanks. -- You received this message because you are subscribed to the Google Groups "Git for human beings" group.

Re: [git-users] Custom commit property?

2010-01-01 Thread Michael P. Soulier
On 01/01/10 Trans said: > Is there are way to add a custom property to commits? I want to use it > to track commit "type" For example, I use 'admin', 'doc', 'major', > 'minor', and 'bug' to classify my commits. Not that I know of. You can provide custom log messages of course. Mike -- Michael P

[git-users] Re: Custom commit property?

2010-01-01 Thread Jeffrey
This sounds like precisely the purpose of standard formats for log messages. The simplest thing would be to prefix the subject with "[type]:" like this: major: add big feature or put it on the first line of the body, if you have something else you like to do with the subject, whatever. As

[git-users] Re: Custom commit property?

2010-01-01 Thread Trans
On Jan 1, 7:43 pm, Jeffrey wrote: > This sounds like precisely the purpose of standard formats for log > messages.  The simplest thing would be to prefix the subject with > "[type]:" like this: > > major: add big feature > > > > or put it on the first line of the body, if you have something