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.
我正在使用 PySVN 从 python 脚本访问 SVN API。
我似乎无法找到一种方法来确定给定分支中还有哪些其他修订号。
我可以使用 info 和/或 info2 确定我的工作副本主干的修订号,以及最新更改的修订号,但我想知道我在当前分支中还有哪些其他修订号(以前和稍后),所以我将能够更新到其他特定的修订。
有任何想法吗?
谢谢,马丁
哦,好吧,我找到了一种方法:我可以使用 log 命令创建一个日志消息列表并循环浏览这些消息。它们是包含所有相关信息的字典。