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

(New page: = Feature = TODO = Bugs Closed = TODO = Commits = [http://egit.eclipse.org/w/?p=jgit.git;a=shortlog;h=stable-0.11;hp=v0.10.1;opt=--no-merges JGit 0.11 - commits in gitweb])
 
 
(5 intermediate revisions by 2 users not shown)
Line 1: Line 1:
= Feature =
+
= Git Porcelain API Updates =  
  
TODO
+
More Git porcelain commands were added to the '''org.eclipse.jgit.api''' package
 +
* <code>RevertCommand</code>
 +
* <code>CloneCommand</code>
 +
* <code>PullCommand</code> now supports rebase
 +
 
 +
= Features =
 +
 
 +
== Support for self signed certificate (HTTPS) ==
 +
 
 +
Added possibility to disable ssl verification, just as is possible with git
 +
using: <code>git config --global http.sslVerify false</code>
 +
 
 +
To enable the feature, configure
 +
'''Window > Preferences > Team > Git > Configuration'''
 +
and add a new key/value: <code>http.sslVerify=false</code>
 +
 
 +
== Note Support ==
 +
*Merging of git notes was implemented
 +
 
 +
== Configuration ==
 +
* Support for system-wide git configuration was added
  
 
= Bugs Closed =
 
= Bugs Closed =
  
TODO
+
[https://bugs.eclipse.org/bugs/buglist.cgi?chfieldto=2011-02-10;query_format=advanced;chfield=bug_status;chfieldfrom=2010-12-18;chfieldvalue=resolved;resolution=FIXED;resolution=DUPLICATE;product=JGit;classification=Technology 12 bugs and 4 enhancement requests] were closed
  
 
= Commits =  
 
= Commits =  
  
 
[http://egit.eclipse.org/w/?p=jgit.git;a=shortlog;h=stable-0.11;hp=v0.10.1;opt=--no-merges JGit 0.11 - commits in gitweb]
 
[http://egit.eclipse.org/w/?p=jgit.git;a=shortlog;h=stable-0.11;hp=v0.10.1;opt=--no-merges JGit 0.11 - commits in gitweb]
 +
 +
[[Category:JGit]]

Latest revision as of 22:28, 29 November 2023

Git Porcelain API Updates

More Git porcelain commands were added to the org.eclipse.jgit.api package

  • RevertCommand
  • CloneCommand
  • PullCommand now supports rebase

Features

Support for self signed certificate (HTTPS)

Added possibility to disable ssl verification, just as is possible with git using: git config --global http.sslVerify false

To enable the feature, configure Window > Preferences > Team > Git > Configuration and add a new key/value: http.sslVerify=false

Note Support

  • Merging of git notes was implemented

Configuration

  • Support for system-wide git configuration was added

Bugs Closed

12 bugs and 4 enhancement requests were closed

Commits

JGit 0.11 - commits in gitweb

Back to the top