在提交消息中链接到GitHub上的问题编号

自动是否有可能在git commit消息中有指向GitHub问题号的链接?

1196616 次浏览

如果您想链接到GitHub问题关闭问题,您可以在Git提交消息中提供以下行:

Closes #1.Closes GH-1.Closes gh-1.

(这三个中的任何一个都可以。)请注意,这将链接到问题并关闭它。您可以在此博客文章中找到更多信息(大约在1:40开始观看嵌入的视频)。

我不确定类似的语法是否会简单地链接到一个问题而不关闭它。

GitHub会添加一个对提交的引用,如果它包含#Isocenbr(偶然发现的)。

只需在提交消息中包含#xxx即可引用问题而无需关闭它。

使用newgithub问题2.0,您可以使用这些同义词来引用一个问题并关闭它(在您的提交消息中):

  • fix #xxx
  • fixes #xxx
  • fixed #xxx
  • close #xxx
  • closes #xxx
  • closed #xxx
  • resolve #xxx
  • resolves #xxx
  • resolved #xxx

您也可以将#xxx替换为gh-xxx

引用和结束各回购协议之间的问题也有效:

fixes user/repo#xxx

查看他们的帮助部分中提供的留档

就像其他答案一样:如果你甚至不想用问题编号编写提交消息,并且碰巧使用Eclipse进行开发,那么你可以安装eGit和Mylyn插件以及Mylyn的GitHub连接器。然后,Eclipse可以自动跟踪你正在处理的问题和自动填充提交消息,包括所有其他答案中显示的问题编号。

有关该设置的更多详细信息,请参阅http://wiki.eclipse.org/EGit/GitHub/UserGuide

您还可以交叉引用repos:

githubuser/repository#xxx

XXX是发行号

他们在博客上写了一篇关于新问题2.0的文章https://github.blog/2011-04-09-issues-2-0-the-next-generation/

同义词包括

  • 修复#xxx
  • 修复#xxx
  • 修复#xxx
  • 关闭#xxx
  • 关闭#xxx
  • 关闭#xxx

在提交消息中使用任何关键字都会使您的提交被提及或关闭问题。

我作为程序员的第一个项目之一是一个名为马车的gem,它(除其他外)允许自动将github问题编号添加到分支上的每个提交消息中,这是尚未真正回答的问题的一部分。

基本上,在创建分支时,您将使用自定义命令(类似于stagecoach -b <branch_name> -g <issue_number>),然后将问题编号分配给yml文件中的该分支。然后有一个提交钩子自动将问题编号附加到提交消息中。

我不会推荐它用于生产使用,因为当时我只编程了几个月,我不再维护它,但它可能对某人感兴趣。

为了将问题编号链接到您的提交消息,您应该添加:#issue_number在您的git提交消息中。

示例提交消息UdurityGit提交消息样式指南

feat: Summarize changes in around 50 characters or less
More detailed explanatory text, if necessary. Wrap it to about 72characters or so. In some contexts, the first line is treated as thesubject of the commit and the rest of the text as the body. Theblank line separating the summary from the body is critical (unlessyou omit the body entirely); various tools like `log`, `shortlog`and `rebase` can get confused if you run the two together.
Explain the problem that this commit is solving. Focus on why youare making this change as opposed to how (the code explains that).Are there side effects or other unintuitive consequenses of thischange? Here's the place to explain them.
Further paragraphs come after blank lines.
- Bullet points are okay, too
- Typically a hyphen or asterisk is used for the bullet, precededby a single space, with blank lines in between, but conventionsvary here
If you use an issue tracker, put references to them at the bottom,like this:
Resolves: #123See also: #456, #789

您还可以引用存储库:

githubuser/repository#issue_number