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.
提供 url 时,是否有任何可用的 java api 可用于访问远程 git 存储库的版本历史记录。我正在寻找与 svnkit 等价的东西。我研究了 javagit,但它似乎没有远程访问的选项。任何帮助都会很棒!
根据设计,git 存储库始终是本地的。
因此,除非您可以使用类似的东西gitweb,cgit或者ssh可以通过网络为您提供该信息,否则这是不可能的。
gitweb
cgit
ssh
如果您能够远程访问 git 键值对象存储,那将是可能的,但 git 只是更喜欢先复制整个对象存储,然后在本地查看它。