All Questions
5 questions
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 ...
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 ...
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 ...
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.
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 ...