Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

Git pull always shows error "Permission denied (publickey). fatal: Could not read from remote repos"

Arjun Thakur January 18, 2023

I was already configure the ssh key in my bitbucket access key location.
I am using atlassian/ssh-run:0.4.0 module for ssh it is working fine but when my bash script command runs then git pull shows error "

Permission denied (publickey).
fatal: Could not read from remote repository.
Please make sure you have the correct access rights"
this is my bash script code :-

#!/bin/bash

if [[ "$BRANCH" == "featurecicd" ]]; then
echo 'Aborting script';
cd /usr/share/nginx/html/........../.../.../../
pwd
sudo git stash

repos=(
"featurecicd"
)
echo ""
echo "Getting latest for" ${#repos[@]} "repositories using pull"

for repo in "${repos[@]}"
do
echo ""
echo "****** Getting latest for" ${repo} "******"
cd "${repo}"
sudo git pull
echo "******************************************"
done

#sudo git pull
sudo git stash pop
npm i
npm run build

when I runs these command in my server manually it not show any error
my git remote already added ssh type

plz

1 answer

0 votes
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 8, 2023

Hi @Arjun Thakur and welcome to the community!

I would like to ask some questions so I can better help you:

1. I see that you are using sudo with the git pull command. Were the clone directories created with the root user?

2. When you use sudo, the command will try the SSH keys associated with the root user. Have you set up SSH keys for the root user on this machine?

Please note that I am referring to the SSH keys configured for the user on this server in order to connect via SSH to Bitbucket and pull, and not the SSH keys you configured for the pipe in order to connect to your server.

3. For further troubleshooting, you can add the argument GIT_SSH_COMMAND="ssh -vvv" to the sudo git pull command as follows:

sudo GIT_SSH_COMMAND="ssh -vvv" git pull

The output will show you the path of the .ssh directory where the command is looking for keys and which keys are tried. Is the local key you created being offered?

Kind regards,
Theodora

Ankit Dogra February 8, 2023

thanks, now my problem is resolved.

Like Theodora Boudale likes this
Theodora Boudale
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
February 10, 2023

That's good to hear, please feel free to reach out if you ever need anything else.

Suggest an answer

Log in or Sign up to answer
DEPLOYMENT TYPE
CLOUD
PERMISSIONS LEVEL
Site Admin
TAGS
AUG Leaders

Atlassian Community Events