Git Product home page Git Product logo

Comments (3)

mkpathcreate avatar mkpathcreate commented on July 18, 2024 1

Ok i got this working. The problem is the folder permission for your GIT folder, it needs to be www-data (or httpd/apache user, the PHP file is run by apache user, so the git folder should be your apache user.)

You need to have the public keys generated for www-data user (or apache/httpd user based on your server configuration).

Step 1: (ON YOUR SERVER)

#let's be root
sudo -i

##go the apache folder
cd /var/www

##create folder to store keys
mkdir .ssh
chown -R www-data:www-data .ssh
##create keys
sudo -u www-data ssh-keygen -t ed25519 -C "[email protected]"
#click yes, yes in case you dont need a passphrase

##Start the ssh-agent in the background.
eval "$(ssh-agent -s)"
##add Key
ssh-add ~/.ssh/id_ed25519

##Copy the generated Pub key to be pasted on github.com
tail /var/www/.ssh/id_ed25519.pub

#Attempts to ssh to GitHub
sudo -u www-data ssh -T [email protected]

Step 2:

Copy/Add the key displayed above in tail command to your github account or repo, Repo->Settings->Deploy Keys.

#type "yes"

Step 3: (OPTIONAL, in case you had used HTTPS like me, you need to change it to ssh git)

Cd to your git folder for e.g /var/www/my-project folder
nano .git/config

Change

url = https://github.com/username/reponame

to

url = [email protected]:username/reponame.git

from git-deploy.

mkpathcreate avatar mkpathcreate commented on July 18, 2024

Getting similar error for private repo

=== ERROR: Pull failed using GIT /usr/bin/git and DIR /var/www/xxxx ===
fatal: could not read Username for 'https://github.com': No such device or address

from git-deploy.

Rengaht avatar Rengaht commented on July 18, 2024

Hi, I follow the steps above, but still get error as below:
can anyone help out~

=== ERROR: Pull failed using GIT /usr/bin/git and DIR /opt/bitnami/apache2/htdocs/ ===
Could not create directory '/usr/sbin/.ssh'.
Host key verification failed.
fatal: Could not read from remote repository.

Please make sure you have the correct access rights
and the repository exists.

from git-deploy.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.