git

gitの初期設定

gitに名前とメールアドレスを登録 $ git config --global user.name "<ユーザ名>" $ git config --global user.email "<メールアドレス>" gitで使用するエディタを定義 $ git config --global core.editor 'vim -c "set fenc=utf-8"'