Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与主题一样,为给定的 SVN 存储库 URL 获取标签列表(或简单的子目录)的推荐方法是什么?
我正在使用 pySVN 来处理存储库。
例如,如果有如下的树结构:
trunk/ branch/ tags/ tag1/ tag2/ tag3/
我怎样才能得到类似的东西:
['tag1', 'tag2', 'tag3']
?
任何帮助,将不胜感激!
我有以下代码的解决方案:
from pysvn import Client import urlparse, posixpath tagsUrl="svn://MyRepoUrl/tags" tag_list=[posixpath.basename(urlparse.urlparse(elem[0].get('path'))[2]) for elem in Client().list(tagsUrl)[1:]]