Skip to main content

Notice: This Wiki is now read only and edits are no longer possible. Please see: https://gitlab.eclipse.org/eclipsefdn/helpdesk/-/wikis/Wiki-shutdown-plan for the plan.

Jump to: navigation, search

Difference between revisions of "JGit/New and Noteworthy/6.3"

Line 1: Line 1:
 
= JGit =
 
= JGit =
 +
 +
== Shallow Clone and Fetch
 +
 +
The CloneCommand and the FetchCommand now have the new methods
 +
- setDepth to support option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---depthltdepthgt --depth]
 +
- setShallowSince to support option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---shallow-sinceltdategt --shallow-since]
 +
- addShallowExclude to support option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---shallow-excludeltrevisiongt --shallow-exclude]
 +
to tell the server that the client doesn't want to download the complete history.
  
 
== Other Changes ==
 
== Other Changes ==

Revision as of 02:54, 7 September 2022

JGit

== Shallow Clone and Fetch

The CloneCommand and the FetchCommand now have the new methods - setDepth to support option --depth - setShallowSince to support option --shallow-since - addShallowExclude to support option --shallow-exclude to tell the server that the client doesn't want to download the complete history.

Other Changes

The complete list of new features and bug fixes is available in the release notes.

Contributors

The following ? developers worked on this release:

Back to the top