🙆♀️
GITHUB 複数アカウントでリポジトリ毎に設定を変える
GITHUB複数アカウントの困りごと?
仕事用、プライベート用など複数アカウント持っているとうっかり別垢でコミットしがちで困っていたので設定をメモ書きします
.gitconfigファイル作成
local単位で設定が変わるように下記のようなファイルを作成します
.gitconfig
git config --local user.name <user_name>
git config --local user.email <user_name>@users.noreply.github.com
初回pushまで
git init
source .gitconfig
git config --local --list
git remote add origin git@github:<user_name>/<repository>.git
git add .
git commit -m "first commit"
git branch -M main
git push -u origin main
最後に
GITHUBの複数アカウントは面倒ですね
Discussion