LoginSignup
1
0

More than 5 years have passed since last update.

Git タグからタグまでのコミットをざっと把握する

Last updated at Posted at 2016-09-23

git log タグ..タグ

単純に tag名..tag名 と範囲を指定するだけでOKです。


$ git log V1.0..V1.1

変更点の概略をざっと把握する

概略をざっと見たい場合とかは下記のようなオプションで見ると良さそうです。


$ git log V1.0..V1.1 --pretty=format:"%ad %<(18)%cn %s" --date=short --no-merges
オプション 内容
%ad Author の日付 (-date= オプションに従った形式)
%cn Committer の名前
%s 件名

参考

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