gitのuser.nameとuser.emailを会社/個人で自動的に切り替える方法 を見て。
direnv
を使って.envrc
に以下のようにしておけば、簡単に切り替えられます。
if has git; then
git config user.name "Isao Sugimoto"
git config user.email "d6rkaiz@gmail.com"
fi
has
についてはdirenvをインストールしていれば使える関数です。
Go to list of users who liked
More than 5 years have passed since last update.
gitのuser.nameとuser.emailを会社/個人で自動的に切り替える方法 を見て。
direnv
を使って.envrc
に以下のようにしておけば、簡単に切り替えられます。
if has git; then
git config user.name "Isao Sugimoto"
git config user.email "d6rkaiz@gmail.com"
fi
has
についてはdirenvをインストールしていれば使える関数です。
Register as a new user and use Qiita more conveniently
Go to list of users who liked