Closing a GitHub Issue while on a different branch

青春壹個敷衍的年華 提交于 2020-01-02 00:52:19

问题


I am not working on the Master branch. I am working on a different one newFeature , which is also published on github.

I know how to to close issues when working on the Master branch: Closes #XXX.

However this only works when I am working on the Master branch, if I switch over to the other branch or a different one and do a commit with Closes #XXX it does not close the issue.

My question is: Is it possible to do this and how do you do it?


回答1:


i'm pretty sure github issues are agnostic of branches.

are you talking about a local branch or a tracking branch? if your not specifically tracking the branch on github, the branch will not be pushed - thus github will not see your close #XXX command. here's some info on remote branches from the progit book http://git-scm.com/book/en/Git-Branching-Remote-Branches

UPDATE

i emailed this problem to the github support staff and they confirmed this is expected behavior. here's the response i got from them:

It is because of a recent change we made. Issues are only closed when the commits are merged to the default branch of your repository. I am sorry for the confusion.



来源:https://stackoverflow.com/questions/14154054/closing-a-github-issue-while-on-a-different-branch

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!