random-commits.py

来自「subversion-1.4.3-1.tar.gz 配置svn的源码」· Python 代码 · 共 31 行

PY
31
字号
#!/usr/bin/env python## USAGE: random-commits.py## Using the FILELIST (see config below), a series of COUNT commits will be# constructed, each changing up to MAXFILES files per commit. The commands# will be sent to stdout (formatted as a shell script).## The FILELIST can be constructed using the find-textfiles script.#import randomFILELIST = 'textfiles'COUNT = 1000	# this many commitsMAXFILES = 10	# up to 10 files at a timefiles = open(FILELIST).readlines()print '#!/bin/sh'for i in range(COUNT):    n = random.randrange(1, MAXFILES+1)    l = [ ]    print "echo '--- begin commit #%d -----------------------------------'" % (i+1,)    for j in range(n):        fname = random.choice(files)[:-1]	# strip trailing newline        print "echo 'part of change #%d' >> %s" % (i+1, fname)        l.append(fname)    print "svn commit -m 'commit #%d' %s" % (i+1, ' '.join(l))

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?