0

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

任何人都可以给我一个如何使用它的例子吗?

先感谢您

4

1 回答 1

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
于 2016-05-14T20:54:34.773 回答