Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ __org.eclipse.jgit.junit.ssh__: Helpers for unit testing
- Only the timestamp of the index is used by JGit if the index is
dirty.

- JGit 6.0 and newer requires at least Java 11. Older versions require at least Java 1.8.
- While Java 11 is the minimum requirement, building JGit with newer Java versions (for example Java 25) may fail due to toolchain incompatibilities. Java **17** is recommended for a stable build.

- CRLF conversion is performed depending on the `core.autocrlf` setting,
however Git for Windows by default stores that setting during
Expand Down
5 changes: 3 additions & 2 deletions org.eclipse.jgit/src/org/eclipse/jgit/lib/Repository.java
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,9 @@
/**
* Represents a Git repository.
* <p>
* A repository holds all objects and refs used for managing source code (could
* be any type of file, but source code is what SCM's are typically used for).
* A repository holds all Git objects and references required to manage a
* project’s version history. While it can store any type of file, it is
* commonly used for source code.
* <p>
* The thread-safety of a {@link org.eclipse.jgit.lib.Repository} very much
* depends on the concrete implementation. Applications working with a generic
Expand Down