본문 바로가기

DEVELOPMENT/Git

[Git] commit message로 issue 정리하기

반응형

 

아래와 같은 키워드와 이슈 넘버는 자동적으로 이슈를 클로즈할 수 있다. 이 때, 키워드와 이슈넘버는 띄어쓰기를 해주어야 한다.

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

 

https://github.blog/2011-04-09-issues-2-0-the-next-generation/

 

Issues 2.0: The Next Generation - The GitHub Blog

Issue management: the final frontier. Almost two years ago to the day, GitHub launched an issue tracker. Some people love it, some people hate it — but let’s not focus on the past (we’re living

github.blog

https://github.blog/2013-01-22-closing-issues-via-commit-messages/

 

Closing Issues via Commit Messages - The GitHub Blog

Recently we changed the way closing issues via commit message works on GitHub. Now when you enter “Fixes #33” in a commit message, issue 33 will only be closed once the commit is merged into

github.blog

https://stackoverflow.com/questions/1687262/link-to-the-issue-number-on-github-within-a-commit-message

 

Link to the issue number on GitHub within a commit message

Is it somehow possible to automatically have a link to GitHub issue number in the git commit message?

stackoverflow.com

 

반응형