Skip to content

Instantly share code, notes, and snippets.

@bucho666
Last active May 21, 2017 07:40
Show Gist options
  • Save bucho666/53f0e7f13d881cb1f9ba to your computer and use it in GitHub Desktop.
Save bucho666/53f0e7f13d881cb1f9ba to your computer and use it in GitHub Desktop.
git configについて

個人設定

git config --global user.name "あなたの名前"

git config --global user.email メールアドレス

gitの出力に色をつけてカラフルにする

git config --global color.ui auto

ファイルの改行コードを強制的にLFにしてOS依存をなくす

git config --global core.autocrlf input

無駄なスペースを削除

git config --global core.whitespace trailing-space,space-before-tab

エディタをvimに設定

git config --global core.editor vim

設定確認

git config --list

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment