aaaiiuie

学習(備忘録)のため運用

git で warning: unable to access '/.config/git/attributes': Permission deniedのエラー

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