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のログを見やすくする

Last updated at Posted at 2021-08-04

概要

  • git logの結果を見やすくする

git log

一行でログを見やすく表示する

表示したいもの

  • コミットのハッシュ
  • 日付
  • コミットメッセージ
  • ブランチ名(refs)

コマンド

$ git log --date='format-local:%Y/%m/%d %H:%M:%S' --pretty='format:%C(yellow)%H %C(green)%ad %C(reset)%s %C(red)%d'
7d556dc5d8ad4a49f2b85b06506c9cad4f824292 2021/08/04 22:08:19 feat: Gitのログを1行で表示する  (HEAD -> feat/git_log_oneline)
7e2b7d1d9e169b73eb258d8e9062b0c88bab89b0 2021/08/04 21:43:34 Initial commit  (origin/main, origin/HEAD, main)

オプション

  • --date='format-local:%Y/%m/%d %H:%M:%S'
    • 日付のフォーマットを指定する
  • --pretty='format:<フォーマット>'
    • デフォルトの書式以外の形式で出力する
      • %C(<color>)・・・色指定
      • %H・・・コミットのハッシュ
      • %ad・・・Authorの日付
      • %s・・・コミットメッセージ
      • %d・・・ブランチ名(refs)

参考

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?