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.
我正在尝试使用正确的(非弃用)版本的 Add/checkout/commit 等,但这些操作需要一个 int 的“Depth”。在我正在编写的程序中,我并不总是知道深度。使用类似于从命令行使用 SVN 和 --depth 的 INFINITY '关键字' 会很好。
但是,我看不到如何使用 javahl 中的 SVNClient 在 Java 代码中执行此操作。
我最好的选择只是拍打 Integer.MAX 以“模拟”无限深度吗?
尝试
int depthInfinity = org.tigris.subversion.javahl.Depth.infity;