LoginSignup
1
0

More than 5 years have passed since last update.

gitのlogを書き出す

Posted at

備忘録として。

全履歴を取得

git log --branches > log.txt

日付をYYYY-MM-DD形式に

git log --branches --date=iso > log.txt

1週間分だけ

git log --branches --date=iso --since="1week" > log.txt

2019/01/01以降

git log --branches --date=iso --since="2019/01/01" > log.txt

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