使用pysvn包中的import_()函数

时间:2016-05-13 16:06:15

标签: python svn pysvn

我想知道如何使用pysvn包中的函数import_(),但我并不完全了解它所需的所有不同参数。

任何人都可以举例说明如何使用它?

提前谢谢

1 个答案:

答案 0 :(得分:1)

  

任何人都可以举例说明如何使用它?

以下程序演示了client.import_()的使用。该程序执行与命令行完全相同的功能:

svn import /tmp/example svn+ssh://t420/svnroot/trunk/example -m "Initial checkin"

示例程序(x.py):

import pysvn
client = pysvn.Client()
client.import_(path='/tmp/example',
               url=u'svn+ssh://t420/svnroot/trunk/example',
               log_message='Initial checkin')

结果:

$ ls /tmp/example
hello.py  hello.txt
$ python x.py 
$ svn ls svn+ssh://t420/svnroot/trunk/example
hello.py
hello.txt