D | git-llvm | 136 def svn(cwd, *cmd, **kwargs): function 177 svn(svn_repo, 'revert', '-R', '.') 181 for line in svn(svn_repo, 'status', '--no-ignore').split('\n'): 187 svn(svn_repo, 'update', *list(GIT_TO_SVN_DIR.values())) 196 svn(svn_root, 'checkout', '--depth=immediates', 198 svn(svn_root, 'update', *list(GIT_TO_SVN_DIR.values())) 221 eol_props = svn(svn_sr_path, 'propget', 'svn:eol-style', *files, 255 status = svn(svn_repo, 'status', '--no-ignore') 275 status_lines = svn(svn_repo, 'status', '--no-ignore').split('\n') 279 svn(svn_repo, 'add', '--no-ignore', l[1:].strip()) [all …]
|