0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

GitのコミットコメントとGithubのissueを紐づけてタスク管理する

Posted at

個人開発する際に,タスク管理のため行っているissueとbranchの紐付け方法のメモ.

Gitでコミットする時にissueの番号をコミットコメントにする

例を挙げると

git commit -m "#8"

とすると,codeのコメント欄ににissue番号#8に対してのリンクが付与されていることが確認できる.

コミットコメントに番号が含まれてさえいればいいので,下記のような形でもOK.

git commit -m "#8 削除機能実装"

これを利用して,1日から数時間程度で終わるぐらいの分量でissueを作成し,各issueごとにbranchを切って作業するとよい.

タスク管理の流れ

  1. issue作る
  2. issueひとつに対しひとつブランチ切る(ブランチ名もissue番号にしてしまうのがおすすめ)
  3. 作業する
  4. コミットする(右のコマンドでissue閉じながらコミットできる)
git commit -m "hoge create close #8"
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?