Git のインストール〜設定

環境

  • CentOS7
  • git1.x

インストール

$ sudo yum -y install git git-daemon git-all
$ git --version
git version 1.8.3.1

設定

  • --global つけない場合はプロジェクト単位の設定になる

ユーザー名とメアドを設定する

$ git config --global user.name "githubで使用しているユーザー名"
$ git config --global user.email "githubで使用しているメアド"

便利な設定

# 色をつけて文字を見やすくする
$ git config --global color.ui auto

# ファイルパーミッションもgitの管理に含める
$ git config --global core.filemode true

# 日本語ファイルを文字化けしないようにする
$ git config --global core.quotepath false

# 大文字小文字を判別させる
$ git config --global core.ignorecase false

# 確認
$ git config -l --global | grep color.ui
$ git config -l --global | grep core.filemode
$ git config -l --global | grep core.quotepath
$ git config -l --global | grep core.ignorecase

関連投稿