Gitをインストールしたら、まずやっておくべき初期設定です。
ユーザ情報の登録
git config --global user.name "user name"
git config --global user.email "[email protected]"
設定内容の確認
git config --global -l
とえあえず、はじめにこれをやっておきましょう。
Gitをインストールしたら、まずやっておくべき初期設定です。
git config --global user.name "user name"
git config --global user.email "[email protected]"
設定内容の確認
git config --global -l
とえあえず、はじめにこれをやっておきましょう。
コメント