addしようとしたらエラーがでた。
warning: unable to access '/Users/{user_name}/.config/git/ignore': Permission denied warning: unable to access '/Users/{user_name}/.config/git/attributes': Permission denied
パーミッションの話だとは分かるのでとりあえずホームディレクトリに戻って確認。
$ cd ~/ $ ls -la drwx------ 3 root {xxxxx} 96 5 20 18:00 .config
なぜかルートになっていたので以下のコマンドで所有者を一般ユーザーに変更して解決。
sudo chown -R $(whoami) .config