2013年12月9日月曜日

gitの初期設定 - gitまとめ1

gitの初期設定 - gitまとめ1

git共通の初期設定

ユーザー名とメールの設定

git config --global user.name "toshima66"
git config --global user.email "toshima66@6vox.com"

コマンドからの出力を読みやすくするための設定

git config --global color.ui auto

設定の確認

git 共通の設定はホームフォルダの.gitconfigファイルに書きだされる。

cat ~/.gitconfig

[user]
    name = toshima66
    email = toshima66@6vox.com
[color]
    ui = auto

Written with StackEdit.

  • この記事をシェアする

  • このエントリーをはてなブックマークに追加
  • このブログの更新をチェックする

  • follow us in feedly

0 件のコメント:

コメントを投稿