Skip to content

Instantly share code, notes, and snippets.

@sogaoh
Last active October 9, 2022 14:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sogaoh/0125b0df3e2096f8cf7bc41a417bbb2c to your computer and use it in GitHub Desktop.
Save sogaoh/0125b0df3e2096f8cf7bc41a417bbb2c to your computer and use it in GitHub Desktop.
sogaoh_gitconfig.sh
git config --global user.name "sogaoh"
git config --global user.email "sogaoh@ant-in-giant.llc"
git config --global core.autocrlf false
git config --global core.quotepath false
git config --global core.filemode false
git config --global core.ignorecase false
git config --global color.ui true
git config --global color.diff auto
git config --global color.status auto
git config --global color.branch auto
git config --global pull.rebase false
# git config --global core.autocrlf false # 改行コードを自動変換しない
# git config --global core.quotepath false # 日本語ファイル文字化け防止
# git config --global core.filemode false # パーミッション変更を無視
# git config --global core.ignorecase false # 大文字小文字の変更を検知
# git config --global http.sslVerify false
# git config --global --unset http.sslVerify # 解除
# git config -l # 確認
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment