Is there a git analog to svn: bugtraq properties?

I am looking for specs or recommendations on how the Git client should integrate with bug tracking systems. For SVN there is bugtraq: -properties. Is there something similar for git?

+6
source share
5 answers

It seems like there is currently no such specification, I started:

https://github.com/mstrap/bugtraq

+4
source

You can put this in your /.git/config file to work with TortoiseGit:

 [bugtraq] url = http://jira.com:8080/browse/ number = false warnifnoissue = true message = http://jira.com:8080/browse/%BUGID% label = Issue number append = false 
+2
source

One way would be to use git notes (which I describe in detail here ) to store a ' bugtrag ' note on top of any regular commit (for example, in the notes/bugtraq ).

This would allow integrating without overwriting the repo history after the git that are already present.

+1
source

Integration of error trackers with git usually works by analyzing git commit messages in the error tracker.

i.e. you indicate โ€œfixes # 1234โ€ or โ€œbinds # 1332โ€ in your message, and the error tracker establishes a connection.

-2
source

Rarely does a question arise that were not asked before. There is already a popular standard for project information, such as a link to bugtracker and much more: https://en.wikipedia.org/wiki/DOAP (Project Description)

-2
source

Source: https://habr.com/ru/post/949008/


All Articles