煩わしいgitの設定を少し楽にする~その3~

その1その2を経ていよいよ最後です。 ユーザの入力を受けてGitのアカウントの切り替えに必要なコマンドが一括で実行できるシェルスクリプトです。

#!/bin/sh

echo "Please input your git user name:"
read name
echo "Please input your git e-mail address:"
read email

url="http://$name@github.com/hogehoge/hogehoge.git"
git remote set-url origin $url
git config user.name $name
git config user.email $email