LoginSignup
0
0

More than 1 year has passed since last update.

gitコマンドの分岐、変更ファイルを見やすくするエイリアス(git lol)

Last updated at Posted at 2021-06-19

git bashにコピーして実行してください

git config --global alias.lol "log --graph  --pretty=format:'%Cred%h%Creset -%C(bold yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --all"
git config --global alias.lof "log  --name-status  --oneline --graph --decorate --abbrev-commit --all"

git lol

  • ブランチの分岐、マージを視覚化します git-lol.png

git lof

  • コミット毎の変更ファイルを一覧で表示します
    git-lof.png

  • 独習 gitに紹介されていたコマンドを改造したものです。

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