Skip to main content

Notice: this Wiki will be going read only early in 2024 and edits will no longer be 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"

({{code|xxxCommand}})
(Other Features)
Line 17: Line 17:
  
 
= Other Features =
 
= Other Features =
 +
 +
* Support for git configuration parameters {{code|url.insteadOf}} and {{code|url.pushInsteadOf}} supporting URL rewriting, e.g.
 +
<pre style="width: 40em;">
 +
  [url "mirror1.example.org:/pub/git/"]
 +
    insteadOf = mirror1.example.org:/pub/git/core/
 +
</pre>
  
 
= Bug Fixes =
 
= Bug Fixes =
 
[https://bugs.eclipse.org/bugs/buglist.cgi?list_id=1764539;resolution=FIXED;resolution=DUPLICATE;classification=Technology;chfieldto=2012-06-06;query_format=advanced;chfield=bug_status;chfieldfrom=2012-02-25;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=JGit;product=JGit 20 Bugs and 7 enhancement requests] were closed
 
[https://bugs.eclipse.org/bugs/buglist.cgi?list_id=1764539;resolution=FIXED;resolution=DUPLICATE;classification=Technology;chfieldto=2012-06-06;query_format=advanced;chfield=bug_status;chfieldfrom=2012-02-25;bug_status=RESOLVED;bug_status=VERIFIED;bug_status=CLOSED;component=JGit;product=JGit 20 Bugs and 7 enhancement requests] were closed

Revision as of 17:40, 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

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/

Bug Fixes

20 Bugs and 7 enhancement requests were closed

Back to the top