Gitの初期設定、やったほうがいい設定など

Gitをインストールしたら、まずやっておくべき初期設定です。

ユーザ情報の登録

git config --global user.name "user name"
git config --global user.email "[email protected]"

設定内容の確認

git config --global -l

とえあえず、はじめにこれをやっておきましょう。

コメント