Trying to git pull with error: cannot open .git/FETCH_HEAD: Permission denied
Help me please, I am trying to run this in my terminal:
asgard@asgard-A7N8X2-0:~/CollegePortal$ git pull
error: cannot open .git/FETCH_HEAD: Permission denied
Then I try this one
asgard@asgard-A7N8X2-0:~/CollegePortal$ sudo git pull
Permission denied (publickey).
fatal: The remote end hung up unexpectedly
Help me, I don't understand this problem.
Solution 1:
It seems like the first one isn't working because your user doesn't have the permissions for changing that directory, and the second because your root user doesn't have the right SSH keys for accessing that git repository.
Depending on what you're trying to do, it might be better to clone the repository to a different directory, or maybe chown
the current directory to have full access for your user
Solution 2:
Check if you have enough permissions on the .git/
directory. You should have write permissions. You can set them with the following command.
Go to your project folder:
chown -R youruser:yourgroup .git/
Solution 3:
If you want to give the permission to the group,
sudo chmod g+w .git -R
worked best for me.
For MacOS
sudo chmod -R g+w .git
Solution 4:
This is a UNIX permission problem. Do not use sudo
for cloning the repository. You don't have the same ssh keys as root and you shouldn't work as root anyway. Try ls -la
to find the permissions on the files and use chmod
(or sudo chown
) to fix them. Hope that helps.
Solution 5:
In my case work fine after it:
rm -f .git/FETCH_HEAD
git branch -u