有没有使用子进程来克隆git存储库的Python方法?我想要使用你推荐的任何模块。
答案 0 :(得分:94)
使用GitPython将为您提供Git的良好python接口。
例如,在安装它(pip install gitpython
)之后,为了克隆新的存储库,您可以使用clone_from函数:
from git import Repo
Repo.clone_from(git_url, repo_dir)
有关使用Repo对象的示例,请参阅GitPython Tutorial。
注意: GitPython需要在系统上安装git,并可通过系统的PATH访问。
答案 1 :(得分:35)
有GitPython。在内部和内部都没有听说过它,它依赖于某处的git可执行文件;此外,他们可能有很多错误。但值得一试。
如何clone:
import git
git.Git("/your/directory/to/clone").clone("git://gitorious.org/git-python/mainline.git")
(这不好,我不知道这是否是受支持的方式,但它有效。)
答案 2 :(得分:11)
我的解决方案非常简单直接。它甚至不需要手动输入释义/密码。
这是我的完整代码: 导入系统 import os
path = "/path/to/store/your/cloned/project"
clone = "git clone gitolite@<server_ip>:/your/project/name.git"
os.system("sshpass -p your_password ssh user_name@your_localhost")
os.chdir(path) # Specifying the path where the cloned project needs to be copied
os.system(clone) # Cloning
print "\n CLONED SUCCESSFULLY.! \n"
答案 3 :(得分:6)
Github的libgit2绑定,pygit2提供了一个单行克隆远程目录:
clone_repository(url, path,
bare=False, repository=None, remote=None, checkout_branch=None, callbacks=None)
答案 4 :(得分:1)
使用Dulwich提示你应该能够做到:
from dulwich.repo import Repo
Repo("/path/to/source").clone("/path/to/target")
这仍然非常基础 - 它复制了对象和引用,但是如果你创建了一个非裸存储库,它还没有创建工作树的内容。
答案 5 :(得分:1)
答案 6 :(得分:0)
这是使用gitpython模块的gitpull和gitpush的示例代码。
import os.path
from git import *
import git, os, shutil
# create local Repo/Folder
UPLOAD_FOLDER = "LocalPath/Folder"
if not os.path.exists(UPLOAD_FOLDER):
os.makedirs(UPLOAD_FOLDER)
print(UPLOAD_FOLDER)
new_path = os.path.join(UPLOADFOLDER)
DIR_NAME = new_path
REMOTE_URL = "GitURL" # if you already connected with server you dont need to give
any credential
# REMOTE_URL looks "git@github.com:path of Repo"
# code for clone
class git_operation_clone():
try:
def __init__(self):
self.DIR_NAME = DIR_NAME
self.REMOTE_URL = REMOTE_URL
def git_clone(self):
if os.path.isdir(DIR_NAME):
shutil.rmtree(DIR_NAME)
os.mkdir(DIR_NAME)
repo = git.Repo.init(DIR_NAME)
origin = repo.create_remote('origin', REMOTE_URL)
origin.fetch()
origin.pull(origin.refs[0].remote_head)
except Exception as e:
print(str(e))
# code for push
class git_operation_push():
def git_push_file(self):
try:
repo = Repo(DIR_NAME)
commit_message = 'work in progress'
# repo.index.add(u=True)
repo.git.add('--all')
repo.index.commit(commit_message)
origin = repo.remote('origin')
origin.push('master')
repo.git.add(update=True)
print("repo push succesfully")
except Exception as e:
print(str(e))
if __name__ == '__main__':
a = git_operation_push()
git_operation_push.git_push_file('')
git_operation_clone()
git_operation_clone.git_clone('')
答案 7 :(得分:0)
这是一种使用GitPython打印进度的方法
import time
import git
from git import RemoteProgress
class CustomProgress(RemoteProgress):
def update(self, op_code, cur_count, max_count=None, message=''):
if message:
print(message)
print('Cloning into %s' % git_root)
git.Repo.clone_from('https://github.com/your-repo', '/your/repo/dir',
branch='master', progress=CloneProgress())
答案 8 :(得分:0)
相当简单的方法是仅在URL中传递凭据,尽管有些怀疑-谨慎使用。
import os
def getRepo(repo_url, login_object):
'''
Clones the passed repo to my staging dir
'''
path_append = r"stage\repo" # Can set this as an arg
os.chdir(path_append)
repo_moddedURL = 'https://' + login_object['username'] + ':' + login_object['password'] + '@github.com/UserName/RepoName.git'
os.system('git clone '+ repo_moddedURL)
print('Cloned!')
if __name__ == '__main__':
getRepo('https://github.com/UserName/RepoYouWant.git', {'username': 'userName', 'password': 'passWord'})
答案 9 :(得分:0)
对于python 3
第一个安装模块:
pip install gitpython
然后再编码:)
import os
from git.repo.base import Repo
Repo.clone_from("https://github.com/*****", "folderToSave")
希望对您有帮助