Python的高级Git库 Gittle


Posted in Python onSeptember 22, 2014

Gittle是一个高级纯python git 库。构建在dulwich之上,提供了大部分的低层机制。

Install it

pip install gittle

Examples :

Clone a repository

from gittle import Gittle
 
repo_path = '/tmp/gittle_bare'
repo_url = 'git://github.com/FriendCode/gittle.git'
 
repo = Gittle.clone(repo_url, repo_path)

With authentication (see Authentication section for more information) :

auth = GittleAuth(pkey=key)
Gittle.clone(repo_url, repo_path, auth=auth)

Or clone bare repository (no working directory) :

repo = Gittle.clone(repo_url, repo_path, bare=True)

Init repository from a path

repo = Gittle.init(path)

Get repository information

# Get list of objects
repo.commits
 
# Get list of branches
repo.branches
 
# Get list of modified files (in current working directory)
repo.modified_files
 
# Get diff between latest commits
repo.diff('HEAD', 'HEAD~1')

Commit

# Stage single file
repo.stage('file.txt')
 
# Stage multiple files
repo.stage(['other1.txt', 'other2.txt'])
 
# Do the commit
repo.commit(name="Samy Pesse", email="samy@friendco.de", message="This is a commit")

Pull

repo = Gittle(repo_path, origin_uri=repo_url)
 
# Authentication with RSA private key
key_file = open('/Users/Me/keys/rsa/private_rsa')
repo.auth(pkey=key_file)
 
# Do pull
repo.pull()

Push

repo = Gittle(repo_path, origin_uri=repo_url)
 
# Authentication with RSA private key
key_file = open('/Users/Me/keys/rsa/private_rsa')
repo.auth(pkey=key_file)
 
# Do push
repo.push()

Authentication for remote operations

# With a key
key_file = open('/Users/Me/keys/rsa/private_rsa')
repo.auth(pkey=key_file)
 
# With username and password
repo.auth(username="your_name", password="your_password")

Branch

# Create branch off master
repo.create_branch('dev', 'master')
 
# Checkout the branch
repo.switch_branch('dev')
 
# Create an empty branch (like 'git checkout --orphan')
repo.create_orphan_branch('NewBranchName')
 
# Print a list of branches
print(repo.branches)
 
# Remove a branch
repo.remove_branch('dev')
 
# Print a list of branches
print(repo.branches)

Get file version

versions = repo.get_file_versions('gittle/gittle.py')
print("Found %d versions out of a total of %d commits" % (len(versions), repo.commit_count()))

Get list of modified files (in current working directory)

repo.modified_files

Count number of commits

repo.commit_count

Get information for commits

List commits :

# Get 20 first commits repo.commit_info(start=0, end=20)

With a given commit :

commit = "a2105a0d528bf770021de874baf72ce36f6c3ccc"

Diff with another commit :

old_commit = repo.get_previous_commit(commit, n=1)
print repo.diff(commit, old_commit)

Explore commit files using :

commit = "a2105a0d528bf770021de874baf72ce36f6c3ccc"
 
# Files tree
print repo.commit_tree(commit)
 
# List files in a subpath
print repo.commit_ls(commit, "testdir")
 
# Read a file
print repo.commit_file(commit, "testdir/test.txt")

Create a GIT server

from gittle import GitServer
 
# Read only
GitServer('/', 'localhost').serve_forever()
 
# Read/Write
GitServer('/', 'localhost', perm='rw').serve_forever()
Python 相关文章推荐
Python新手入门最容易犯的错误总结
Apr 24 Python
Python中列表list以及list与数组array的相互转换实现方法
Sep 22 Python
Python实现按特定格式对文件进行读写的方法示例
Nov 30 Python
Python常见字典内建函数用法示例
May 14 Python
使用Numpy读取CSV文件,并进行行列删除的操作方法
Jul 04 Python
python实现录音小程序
Oct 26 Python
Python编程深度学习计算库之numpy
Dec 28 Python
Python 模拟生成动态产生验证码图片的方法
Feb 01 Python
python数据库编程 Mysql实现通讯录
Mar 27 Python
Python控制台输出俄罗斯方块移动和旋转功能
Apr 18 Python
Python实现socket库网络通信套接字
Jun 04 Python
python使用matplotlib绘制图片时x轴的刻度处理
Aug 30 Python
Python实现抓取网页并且解析的实例
Sep 20 #Python
跟老齐学Python之字典,你还记得吗?
Sep 20 #Python
跟老齐学Python之再深点,更懂list
Sep 20 #Python
跟老齐学Python之画圈还不简单吗?
Sep 20 #Python
跟老齐学Python之list和str比较
Sep 20 #Python
Python显示进度条的方法
Sep 20 #Python
python中对list去重的多种方法
Sep 18 #Python
You might like
php cookie 作用范围?不要在当前页面使用你的cookie
2009/03/24 PHP
PHP实现搜索地理位置及计算两点地理位置间距离的实例
2016/01/08 PHP
php自定义截取中文字符串-utf8版
2017/02/27 PHP
图片之间的切换
2006/06/26 Javascript
jQuery控制的不同方向的滑动(向左、向右滑动等)
2014/07/18 Javascript
jQuery手机浏览器中拖拽动作的艰难性分析
2015/02/04 Javascript
jquery获取及设置outerhtml的方法
2015/03/09 Javascript
Bootstrap媒体对象的实现
2016/05/01 Javascript
小白谈谈对JS原型链的理解
2016/05/03 Javascript
运用js教你轻松制作html音乐播放器
2020/04/17 Javascript
Vue组件模板形式实现对象数组数据循环为树形结构(实例代码)
2017/07/31 Javascript
11行JS代码制作二维码生成功能
2018/03/09 Javascript
es6 filter() 数组过滤方法总结
2019/04/03 Javascript
微信小程序版本自动更新的方法
2019/06/14 Javascript
JavaScript在web自动化测试中的作用示例详解
2019/08/25 Javascript
vue select 获取value和lable操作
2020/08/28 Javascript
[01:09:01]完美世界DOTA2联赛循环赛 Magma vs PXG BO2第一场 10.28
2020/10/28 DOTA
单利模式及python实现方式详解
2018/03/20 Python
python3中获取文件当前绝对路径的两种方法
2018/04/26 Python
Pandas读取MySQL数据到DataFrame的方法
2018/07/25 Python
python hash每次调用结果不同的原因
2019/11/21 Python
python图片剪裁代码(图片按四个点坐标剪裁)
2020/03/10 Python
pycharm解决关闭flask后依旧可以访问服务的问题
2020/04/03 Python
tensorflow2.0的函数签名与图结构(推荐)
2020/04/28 Python
使用Keras中的ImageDataGenerator进行批次读图方式
2020/06/17 Python
详解HTML5中rel属性的prefetch预加载功能使用
2016/05/06 HTML / CSS
HTML5视频播放插件 video.js介绍
2018/09/29 HTML / CSS
俄罗斯最大的在线珠宝大卖场:Nebo
2019/12/08 全球购物
欢迎新生标语
2014/10/06 职场文书
2014年职称评定工作总结
2014/11/26 职场文书
护士个人年度总结范文
2015/02/13 职场文书
趣味运动会通讯稿
2015/07/18 职场文书
Opencv实现二维直方图的计算及绘制
2021/07/21 Python
react 路由Link配置详解
2021/11/11 Javascript
详解python的异常捕获
2022/03/03 Python
js判断两个数组相等的5种方法
2022/05/06 Javascript