Skip to main content

All Questions

Tagged with
1 vote
1 answer
4k views

Git pull using GitPython + SSH keys doesn't work

I am trying to pull a repo from my Github account using GitPython. This is after (1) I performed a git clone already from the command line. (2) Generated new SSH keys using ssh-keygen -t rsa -b ...
DancingJohn's user avatar
3 votes
1 answer
2k views

How to clone git repository with GitPython using SSH key with passphrase

I'm currently trying to figure out how to use GitPython to clone a remote repository with an SSH key that has a passphrase (using Python 3.5.2). The documentation hasn't been very helpful in this ...
drohm's user avatar
  • 224
1 vote
0 answers
386 views

use GitPython on remote machine

Using GitPython locally is peace of cake, I need clone, pull, commit git repository on remote machine. I know I can wrap bash/git commands with paramiko, but I need find out if there is any way to do ...
emcek's user avatar
  • 543
4 votes
0 answers
196 views

How to use remote path for python git.Repo()?

For initialize repo i use repo = git.Repo(path) Is it possible to use remote path like this user@host:/path/to/repo? Thx for comments.
Kostiuk Aleksandr's user avatar
0 votes
1 answer
628 views

SSH identity key ignored when using gitpython under supervisor

I have a simple Flask app that waits for webhooks from my repository host. The webhook triggers a git.pull() of the latest revision from a predefined repository using gitpython. The gitpython code ...
SunPowered's user avatar