github のIssueとコミットを関連付ける コミットメッセージで、Issueと関連付けるには git commit -m "あれこれに追加 #1234" このように#ISSUE番号を書くと関連付けて、Issueに関連付けられる github issue をコミットで閉じる git commit -m "あれこれ fix #1234" このように fix #番号 でIssueに関連付けられ、Issueが閉じられる。 fix だけ?新機能の時はどうするの git commit -m "あれこれ close #1234" このように close #番号 で issue に関連付けられる、Issueが閉じられる 一度に複数のIssueを片付けたら? git commit -m "あれこれ close #1234 #1235 #1236 " このように、番号を複数書くことが出来る まとめ コミ