2
1

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 5 years have passed since last update.

Githubでリリースする一覧を出す

Last updated at Posted at 2018-12-07

Githubを使っている場合限定です。
リリースPRを作るときに便利です。

以下コマンドをうつ

git fetch
git log --merges --first-parent --reverse --pretty=format:'- [ ] %h %B\n' remotes/origin/master..remotes/origin/develop

出力結果

- [ ] 35d29948 Merge pull request #1 from feature/hogehoge

hoge機能の追加

- [ ] 35d29948 Merge pull request #2 from feature/fugafuga

fuga機能の追加

これをGithubのリリースPRにコピペして運用しています

2
1
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
2
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?