Gitのインストールと初期設定 †以下の処理はリポジトリとは関係なく,terminalのどの場所で行っても問題ない. インストール †ソースからビルド †Ubuntuの場合はGitのインストールに記載. バイナリで †最新バージョンを求めないのであれば,apt install でも可. sudo apt install git 初期設定 †git config --global user.name "Name hoge" git config --global user.email "hoge@example.com" git config --global color.ui auto #出力の色の指定(autoに) git config --global core.quotepath false #日本語名のついたファイルの文字化けを防止 git config --global core.editor vim #commitするときのコメントを好きなエディタで git config --global push.default matching 上記の設定は,以下の2つのどちらかを行うことで確認できる. git config --global --list git config -l その他 †よく使う長めのコマンドは bashrc でエイリアスにでもしておいた方が良い. git diff HEAD --name-only git log -n 10 --oneline -decorate --all などは alias xx='command' としておくと楽. |