fatal: could not create work tree dir YOUR_REPOSITORY: Permission denied


ラズパイでアプリをホストしようとgit cloneしようとしたときに表題のエラーが発生。

/opt $ git clone git@github.com:USER/YOUR_REPOSITORY.git
fatal: could not create work tree dir YOUR_REPOSITORY: Permission denied

私個人で使うマシンなので特定ユーザーに/opt以下の所有権を与えるとgit cloneが成功する

$ sudo chown -R $USER:$USER /opt

$ git clone git@github.com:USER/YOUR_REPOSITORY.git
Cloning into 'YOUR_REPOSITORY'...
remote: Enumerating objects: 12, done.
remote: Counting objects: 100% (12/12), done.
remote: Compressing objects: 100% (8/8), done.
remote: Total 12 (delta 1), reused 9 (delta 1), pack-reused 0 (from 0)
Receiving objects: 100% (12/12), done.
Resolving deltas: 100% (1/1), done.
,

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です