サーバに入ってgitの設定をまずする

する

[code lang="text"] git config --global user.name "astel" git config --global user.email hogehoge@gmail.com sudo git config --system alias.st status sudo git config --system alias.ch checkout git config --global core.editor "vi" git config --global core.ignorecase false git config --global push.default current [/code]

設定ファイルはここらへんにおかれる

[code lang="text"] cat ~/.gitconfig [user] name = astel email = hogehoge@gmail.com [/code]

 

[code lang="text"] cat /etc/gitconfig [alias] st = status [/code]