Embeddable distributed version control system in Java?

后端 未结 3 531
鱼传尺愫
鱼传尺愫 2021-02-09 04:15

Is there a distributed version control system (like git or Mercurial) that can be used as an embedded library in Java applications (to implement versioned and synchronizable sto

相关标签:
3条回答
  • 2021-02-09 04:39

    I do not know of any pure Java solutions. But, check out http://javagit.sourceforge.net/ you can use it to connect to a git repository with Java.

    0 讨论(0)
  • 2021-02-09 04:44

    There is a pure Java library, SVN Kit for interacting with Subversion

    0 讨论(0)
  • 2021-02-09 04:48

    @Josh Moore's reply led me to JGit, which seems to be a competitor to JavaGit. JGit is pure Java and licensed under BSD.

    Some further digging unearthed HgKit, which aims to implement Mercurial in Java. It is still pre-alpha and GPLed.

    0 讨论(0)
提交回复
热议问题