我想使用 pysvn 提交一个文件。
这是文档中的代码:
import pysvn
# edit the file foo.txt
f = open('./examples/pysvn/foo.txt', 'w')
f.write('Sample versioned file via python\n')
f.close()
# checkin the change with a log message
client = pysvn.Client()
client.checkin(['./examples/pysvn'], 'Corrected spelling of python in foo.txt')
我是否必须首先打开我要提交的文件?如果我从头开始构建一个文件并想用它来替换 svn repo 中的现有文件,我该如何继续?
谢谢。