Python的高级Git库 Gittle
Gittle是一个高级纯python git 库。构建在dulwich之上,提供了大部分的低层机制
Gittle是一个高级纯python git 库。构建在dulwich之上,提供了大部分的低层机制。
Install it
pip install gittle
Examples :
Clone a repository
1
2
3
4
5
6
|
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) :
1
2
|
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
1
2
3
4
5
6
7
8
9
10
11
|
# 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
1
2
3
4
5
6
7
8
|
# 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
1
2
3
4
5
6
7
8
|
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
1
2
3
4
5
6
7
8
|
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
1
2
3
4
5
6
|
# 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
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# 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
1
2
|
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 :
1
2
|
old_commit = repo.get_previous_commit(commit, n = 1 ) print repo.diff(commit, old_commit) |
Explore commit files using :
1
2
3
4
5
6
7
8
9
10
|
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
1
2
3
4
5
6
7
|
from gittle import GitServer # Read only GitServer( '/' , 'localhost' ).serve_forever() # Read/Write GitServer( '/' , 'localhost' , perm = 'rw' ).serve_forever() |
Python的高级Git库 Gittle的更多相关文章
- 树莓派高级GPIO库,wiringpi2 for python使用笔记(一)安装
网上的教程,一般Python用RPi.GPIO来控制树莓派的GPIO,而C/C++一般用wringpi库来操作GPIO,RPi.GPIO过于简单,很多高级功能不支持,比如i2c/SPI库等,也缺乏高精 ...
- Python测试 ——开发工具库
Web UI测试自动化 splinter - web UI测试工具,基于selnium封装. selenium - web UI自动化测试. mechanize- Python中有状态的程序化Web浏 ...
- Python常用的标准库以及第三方库有哪些?
20个必不可少的Python库也是基本的第三方库 读者您好.今天我将介绍20个属于我常用工具的Python库,我相信你看完之后也会觉得离不开它们.他们是: Requests.Kenneth Reitz ...
- Python常用的标准库以及第三方库
Python常用的标准库以及第三方库有哪些? 20个必不可少的Python库也是基本的第三方库 读者您好.今天我将介绍20个属于我常用工具的Python库,我相信你看完之后也会觉得离不开它们.他们 ...
- Python 常用的标准库以及第三方库有哪些?
作者:史豹链接:https://www.zhihu.com/question/20501628/answer/223340838来源:知乎著作权归作者所有.商业转载请联系作者获得授权,非商业转载请注明 ...
- python测试开发工具库汇总(转载)
Web UI测试自动化 splinter - web UI测试工具,基于selnium封装. selenium - web UI自动化测试. mechanize- Python中有状态的程序化Web浏 ...
- 进击的Python【第五章】:Python的高级应用(二)常用模块
Python的高级应用(二)常用模块学习 本章学习要点: Python模块的定义 time &datetime模块 random模块 os模块 sys模块 shutil模块 ConfigPar ...
- python的高级应用
记录一下Python函数式编程,高级的几个BIF,高级官方库方面的用法和心得. 函数式编程 函数式编程是使用一系列函数去解决问题,按照一般编程思维,面对问题时我们的思考方式是"怎么干&quo ...
- python下载安装requests库
一.python下载安装requests库 1.到git下载源码zip源码https://github.com/requests/requests 2.解压到python目录下: 3.“win+R”进 ...
随机推荐
- Android利用Http下载文件
Android利用Http下载文件 一.场景 下载存文本文件和下载如mp3等大容量的文件 界面 二.代码编写 1.AndroidMainfest.xml中配置 主要是解决网络权限和写SDCard的权限 ...
- POJ 1456 (贪心+并查集) Supermarket
有n件商品,每件商品有它的利润和售出的最后期限,问能够得到的最大利润是多少 这道题和 HDU 1789 Doing Homework again 几乎一模一样,只不过这个是求最的扣分,本题是求最大利润 ...
- HDU 2144 (最长连续公共子列 + 并查集) Evolution
我发现我一直理解错题意了,这里的子序列指的是连续子序列,怪不得我写的LCS一直WA 顺便复习一下并查集 //#define LOCAL #include <iostream> #inclu ...
- 漫游Kafka实现篇之分布式
Zookeeper节点标记 当路径中的元素包括在方括号里比如[xyz],则表示xyz表示的值是不固定的,每个可能的值都有一个Zookeeper节点.比如/topics/[topic]表示每个topic ...
- [xUnix 开发环境--01] MAMP mac os 10.10 配置经历、要点——01. phpmyadmin连不上
Mac OS 10.10已经自带了apache2和php(php的路径我至今还没不知道,太懒没去找) 用brew安装mysql, 在官网上下载了phpmyadmin,按官方方式配置完后,登录不上,也不 ...
- shell动态解析sql的binlog
#!/usr/bin #设置数据库连接 conn='mysql -hhost -Pport -uusername -ppassword' #获取最新的binlog文件 logfile=$($conn ...
- BZOJ 1911 特别行动队
另一个版本的斜率优化...这个要好理解一些. #include<iostream> #include<cstdio> #include<cstring> #incl ...
- Android用自己的app替换Launcher
/*********************************************************************** * Android用自己的app替换Launcher ...
- struts2运行机制
struts2是web应用中一个常用的mvc框架,下面探讨一下其内部运行机制: 1.从客服端浏览器输入的url后,客服端通过http协议发送一个请求到服务器(tomcat),Tomcat收到这个请求之 ...
- SeuRain的归来
不知不觉二十载寒窗苦读要结束了,还没有到回顾过去的时候.马上进入研三了,现在要努力加油了.还记得曾经的那个在凌晨两点奋战的宇么?归来吧!