Github提交消息标记

Jos*_*osh 13 git github

是否可以在提交消息中为github问题分配票证或添加标签?

例:

@usera ready for you to sign off for #Testing
Run Code Online (Sandbox Code Playgroud)

其中@usera是用户而#Testing是标签?

Jos*_*osh 11

不幸的是,如果没有一些hackery,它看起来是不可能的.我整理了一个简单的sinatra应用程序(你可以抛出heroku)来处理一些新的处理程序

Github Postcommit Shinies

要分配给用户,您可以执行以下操作:

git commit -a -m 'updates #23 assigned =USERNAME';
Run Code Online (Sandbox Code Playgroud)

要添加标签,您可以:

git commit -a -m 'updates #23 ~QA ~testing'
Run Code Online (Sandbox Code Playgroud)

你也可以混合搭配:

git commit -a -m 'updates #23 ~QA ~testing =QAUSER'
Run Code Online (Sandbox Code Playgroud)

  • 你的链接已经死了 (3认同)