这篇文章主要讲解了“Pysvn如何使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Pysvn如何使用”吧!pysvn是操作Subversion版本控制的python接口模块. 这个api接
这篇文章主要讲解了“Pysvn如何使用”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“Pysvn如何使用”吧!
pysvn是操作Subversion版本控制的python接口模块. 这个api接口可以管理一个工作副本, 查询档案库, 和同步两个.
该API不能创建新的仓库; 只能作用在现有仓库上. 如果你需要创建一个仓库, 请使用Subversion的svnadmin命令.
使用这个API, 你可以check out一份工作拷贝, 添加, 编辑, 和删除工作文件, 和check in, 比较, 或者放弃更改. 仓库属性, 如关键字扩展, 行字符结束, 或者忽略的列表也可以检查和控制.
Subversion 模型
Subversion是一个更新-编辑-提交的模型. 首先在本地建立一个工作副本. 在工作副本上进行修改, 最后提交到中央仓库 (可以是本地或者远程).
这个模型允许多人偶尔会同时修改同一个文件. 大多情况下. Subversion不会干预合并这些不同修改, 如果一个提交失败, 用户或者应用则要重新检查和修改然后再次提交.
常见任务
本节给出一些使用pysvn接口的常用例子. 业务可以会递归的处理目录. 添加参数recurse=False以防止这种行为; 例如, 你可以需要添加内容没有增加一个目录.
check out一份工作副本
import pysvnclient = pysvn.Client()#check out the current version of the pysvn projectclient.checkout('Http://localhost/example/trunk', './examples/pysvn')#check out revision 11 of the pysvn projectclient.checkout('http://localhost/example/trunk', './examples/pysvn-11', revision=pysvn.Revision(pysvn.opt_revision_kind.number, 11))
这是一个建立example测试项目的例子,目录是examples/pysvn. 这个项目是用在剩下的例子.
添加一个文件或者目录到仓库
import pysvn# write a file foo.txtf = file('./examples/pysvn/foo.txt', 'w')f.write('Sample versioned file via pithon\n')f.close()client = pysvn.Client()#schedule the addition;# the working copy will now track the file as a scheduled changeclient.add('./examples/pysvn/foo.txt')#committing the change actually adds the file to the repositoryclient.checkin(['./examples/pysvn/foo.txt'], 'Adding a sample file')
这个例子是在工作副本中创建了'foo.txt'文件, 然后添加到仓库. 请注意Client.import_()命令会同时增加和提交. 大多数应用, 会在许多修改后再提交.
更新工作副本
import pysvnclient = pysvn.Client()client.update('./examples/pysvn')
从仓库中更新其他用户修改并保存到本地副本. 大多数应用应该经常这样做以防止冲突.
提交更新到仓库
import pysvn# edit the file foo.txtf = open('./examples/pysvn/foo.txt', 'w')f.write('Sample versioned file via Python\n')f.close()# checkin the change with a log messageclient = pysvn.Client()client.checkin(['./examples/pysvn'], 'Corrected spelling of python in foo.txt')
提交到Subversion是原子的. 要么所有修改都成功提交, 要么提交失败. 大部分应用会提交工作副本所有修改, 如本例所示, 或者通过个别文件或者目录, 但必须是同一单位.
放弃工作副本修改
import pysvn# edit the file foo.txtf = file('./examples/pysvn/foo.txt', 'w')f.write('This change will never be seen\n')f.close()#discard the editsclient = pysvn.Client()client.revert('./examples/pysvn/foo.txt')
这丢弃在工作拷贝和恢复的文件或目录的任何未提交的未经编辑的状态变化.
正在计划增加或移除留无版本或恢复到工作拷贝.
重命名或者移动文件
import pysvnclient = pysvn.Client()#rename the file client sideclient.move('./examples/pysvn/foo.txt', './examples/pysvn/foo2.txt')#checkin the change removes the file from the repositoryclient.checkin(['./examples/pysvn/foo.txt', './examples/pysvn/foo2.txt'], 'Foo has become Foo2')
移动或重命名文件删除旧路径或名称的文件, 并增加了在新的位置, 同时保留以前的版本有关的信息.
在这个例子里, 我们通过文件名Client.checkin()传递父目录也将是有效的.
转移和合并可以在服务器端单步完成; 可以参见仓库任务的那节例子.
从仓库中删除文件或目录
import pysvnclient = pysvn.Client()#schedule the removal;# the file will be removed from the working copyclient.remove('./examples/pysvn/foo2.txt')#committing the change removes the file from the repositoryclient.checkin(['./examples/pysvn/foo2.txt'], 'Removing sample file')
有些人把删除的文件, 或是用完全清除存储库目录. 该文件仍然存在于以前的版本, 可以通过检查或以其他方式进行审查以前修订的内容检索.
确定等待变动
import pysvnclient = pysvn.Client()changes = client.status('./examples/pysvn')print 'files to be added:'print [f.path for f in changes if f.text_status == pysvn.wc_status_kind.added]print 'files to be removed:'print [f.path for f in changes if f.text_status == pysvn.wc_status_kind.deleted]print 'files that have changed:'print [f.path for f in changes if f.text_status == pysvn.wc_status_kind.modified]print 'files with merge conflicts:'print [f.path for f in changes if f.text_status == pysvn.wc_status_kind.conflicted]print 'unversioned files:'print [f.path for f in changes if f.text_status == pysvn.wc_status_kind.unversioned]
生成差异或补丁
import pysvnclient = pysvn.Client()diff_text = client.diff('./tmp-file-prefix-', '.')
获取仓库URL
import pysvnclient = pysvn.Client()entry = client.info('.')print 'Url:',entry.url
仓库任务
本节说明任务的例子, 操纵或检查仓库.虽然共同任务, 通过本地工作副本时间的变化, 这些任务直接影响到库
获取仓库目录的清单
import pysvnclient = pysvn.Client()entry_list = client.ls('.')
从仓库获取文件内容
import pysvnclient = pysvn.Client()file_content = client.cat('file.txt')
创建一个标记或分支
import pysvnclient = pysvn.Client()log_message = "reason for change"def get_log_message(): return True, log_messageclient.callback_get_log_message = get_log_messageclient.copy('http://svnrepo.com/svn/trunk', 'http://svnrepo.com/svn/tag/%s' % tag_name )
从仓库中转移或者重命名
import pysvnclient = pysvn.Client()client.move( 'file_old.txt', 'file_new.txt' )
锁定文件
import pysvnclient = pysvn.Client()client.lock( 'file.txt', 'reason for locking' )
锁定文件并锁定其他用户或者工作副本
import pysvnclient = pysvn.Client()client.lock( 'file.txt', 'reason for locking', force=True )
解锁
import pysvnclient = pysvn.Client()client.unlock( 'file.txt' )
解锁文件并锁定其他用户或工作副本
import pysvnclient = pysvn.Client()client.unlock( 'file.txt', force=True )
测试锁定文件
Method 1:
all_entries = self.client.info2( path, recurse=False )for path, info in all_entries: if info['lock']: if info['lock']['token'] != '': print '%s is locked' % path print info['lock']['comment']
Method 2:
all_status = self.client.status( path, recurse=False, update=True )for status in all_status: if status.entry is not None: if status.entry.lock_token is not None: print '%s is locked' % status.path
感谢各位的阅读,以上就是“Pysvn如何使用”的内容了,经过本文的学习后,相信大家对Pysvn如何使用这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是编程网,小编将为大家推送更多相关知识点的文章,欢迎关注!
--结束END--
本文标题: Pysvn如何使用
本文链接: https://lsjlt.com/news/349375.html(转载时请注明来源链接)
有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
2024-05-24
回答
回答
回答
回答
回答
回答
回答
回答
回答
回答
0