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

(Git Porcelain API Updates)
(Git Porcelain API Updates)
Line 5: Line 5:
 
* <code>CloneCommand</code>
 
* <code>CloneCommand</code>
 
* <code>PullCommand</code> now supports rebase
 
* <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>
  
 
= Bugs Closed =
 
= Bugs Closed =

Revision as of 11:07, 10 February 2011

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

Bugs Closed

TODO

Commits

JGit 0.11 - commits in gitweb

Back to the top