LoginSignup
1
1

More than 5 years have passed since last update.

Git の初期設定

Last updated at Posted at 2016-04-29

Git の初期設定

Git を使う上で、自分が使う最低限の設定が以下になります。

コンソールでカラー表示を有効にする設定

$ git config --global color.ui true

名前とEメールの設定

$ git config --global user.name "YOUR NAME"
$ git config --global user.email "YOUR@EMAIL.COM"
1
1
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
1
1