Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jgit-dev] feature idea - in memory

On Thu, Feb 9, 2017 at 12:24 PM, Florian Jäger <flo4it@xxxxxxxxx> wrote:
> Hi guys,
>
> I just realized that jGit does not offers in memory usage of a git
> repository at the moment. I would like to add this support for "memory only"
> git repositories to the library, what do you think about that idea?
>
> I think this feature would be really helpful for people versioning schema or
> config files and want to pull the current versions from the git inside their
> application.


Its an internal API, but we do have an InMemoryRepository:

https://eclipse.googlesource.com/jgit/jgit/+/master/org.eclipse.jgit/src/org/eclipse/jgit/internal/storage/dfs/InMemoryRepository.java


Back to the top