git

windowsでgitが文字化けするのを直す

git

2byte文字が下記のように表示される \xxx\xxx\xxx 下記のコマンドで解決 git config --global core.quotepath false

logを見やすくするエイリアス設定

git

gitのlogを見やすくするためgraphのエイリアス設定をする ~/.gitconfigに以下を追記。 [alias] graph = log --graph --pretty=format:'%Cred%h%Creset -%C(yellow)%d%Creset %s %Cgreen(%cr) %C(bold blue)<%an>%Creset' --abbrev-commit --date=relative gr…