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/2.0"

(Performance improvements)
(Other Features)
Line 27: Line 27:
 
</pre>
 
</pre>
 
* Support to write tests with git command line syntax
 
* Support to write tests with git command line syntax
 +
* Enable large file support to add files with size over 2 GB.
 +
* DirCheckout now validates paths to detect malformed, potentially malicious tree entries
 +
* Add {{code|--all}} switch to jgit command line interface
 +
* Add {{code|config --list}} command to jgit command line interface
  
 
= Performance improvements =
 
= Performance improvements =

Revision as of 18:05, 31 May 2012

New Porcelain Commands

StashApplyCommand

  • Provides applying the changes in a stashed commit to the local working directory and index

StashCreateCommand

  • Provides support to stash the index and working directory changes in a commit stored in refs/stash

StashDropCommand

  • Provides support for dropping a stashed commit

ApplyCommand

  • Provides applying patches on a git index file and a working tree.

Updated Porcelain Commands

CloneCommand

  • Supports autosetuprebase

CheckoutCommand

  • Supports all paths option. This will perform the equivalent of running a git checkout -- . at the root of a repository

Other Features

  • Support for git configuration parameters url.insteadOf and url.pushInsteadOf supporting URL rewriting, e.g.
  [url "mirror1.example.org:/pub/git/"]
    insteadOf = mirror1.example.org:/pub/git/core/
  • Support to write tests with git command line syntax
  • Enable large file support to add files with size over 2 GB.
  • DirCheckout now validates paths to detect malformed, potentially malicious tree entries
  • Add --all switch to jgit command line interface
  • Add config --list command to jgit command line interface

Performance improvements

  • Performance of reading git configuration files was improved

Bug Fixes

20 Bugs and 7 enhancement requests were closed

Back to the top