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"

(Shallow Clone and Fetch)
(Shallow Clone and Fetch)
Line 3: Line 3:
 
== Shallow Clone and Fetch ==
 
== Shallow Clone and Fetch ==
  
The CloneCommand and the FetchCommand now have the new methods
+
The following methods were added to CloneCommand and the FetchCommand to tell the server that the client doesn't want to download the complete history
 
* setDepth to support fetch option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---depthltdepthgt --depth]
 
* setDepth to support fetch option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---depthltdepthgt --depth]
 
* setShallowSince to support fetch option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---shallow-sinceltdategt --shallow-since]
 
* setShallowSince to support fetch option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---shallow-sinceltdategt --shallow-since]
 
* addShallowExclude to support fetch option [https://git-scm.com/docs/git-fetch#Documentation/git-fetch.txt---shallow-excludeltrevisiongt --shallow-exclude]
 
* addShallowExclude to support fetch 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:55, 7 September 2022

JGit

Shallow Clone and Fetch

The following methods were added to CloneCommand and the FetchCommand 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