最初のgit設定
1 2 3 4 5 6 7 8 9 10 |
% # ユーザー名の登録 % git config --global user.name "John Smith" % # メールアドレスの登録 % git config --global user.email mail@domain.com % # 色付けON % git config --global color.ui true % # 設定の確認 % git config --global --list |
Tips
~/.gitconfigに設定ファイルが存在します。
gitを安全に使用する為に
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
<br />[push] # 引数なしgit pushでの事故を防ぐ #default = current # カレントブランチのpushのみ行う default = upstream # 追跡関係がある場合のみ、カレントブランチのpushが行うことができる [branch] # 全追跡ブランチで rebase を使う autosetuprebase = always [merge] # ファストフォワード(Fast-forward)マージを防ぎ、意図的にマージコミットを作成するため # from 1.7.6 ff = false [pull] # 作業中のブランチの履歴を書き換え、変更内容を一番上に保つ # from 1.7.9 # rebase = true # from 1.8.5 rebase = preserve |
を入れておきましょう。