0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Gitを初期設定する

Posted at

Gitを使うユーザーを設定します。

$ git config --global user.name 'hikotaro'
$ git config --global user.eamil 'hikotaro_san@yaoo.co.jp'

Gitの出力をカラー表示するように設定します

$ git config --global color.ui auto

設定した内容は、~/.gitconfigファイルに保存されます。

[user]
	name = hikotaro
	email = hikotaro_san@yahoo.co.jp
[color]
	ui = auto
0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?