Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Sohn2016-01-21 22:30:20 +0000
committerMatthias Sohn2016-01-21 22:30:20 +0000
commit65030babd9c64d39a9cc23b02afb50651987d844 (patch)
tree4f56bb10fb75770f326eb118f54680ecca59e659 /org.eclipse.egit.doc/help/JGit
parent77ddf3c5c06dd91ee19eb35915301bc0cece64dd (diff)
downloadegit-65030babd9c64d39a9cc23b02afb50651987d844.tar.gz
egit-65030babd9c64d39a9cc23b02afb50651987d844.tar.xz
egit-65030babd9c64d39a9cc23b02afb50651987d844.zip
Update documentation for 4.2
Change-Id: Iae37e5f3b95ae9dac40d1935932e14c762b86d43 Signed-off-by: Matthias Sohn <matthias.sohn@sap.com>
Diffstat (limited to 'org.eclipse.egit.doc/help/JGit')
-rw-r--r--org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/4.1.html79
-rw-r--r--org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/4.2.html103
-rw-r--r--org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Bug-Fixes.html (renamed from org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Bug-Fixes.html)20
-rw-r--r--org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Contributors.html (renamed from org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Contributors.html)42
-rw-r--r--org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Updating-This-Document.html (renamed from org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Updating-This-Document.html)12
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/Advanced-Topics.html4
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/Concepts.html4
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/Reference.html4
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/Snippets.html4
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/Updating-This-Document.html4
-rw-r--r--org.eclipse.egit.doc/help/JGit/User_Guide/User-Guide.html10
11 files changed, 161 insertions, 125 deletions
diff --git a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/4.1.html b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/4.1.html
deleted file mode 100644
index daab83c067..0000000000
--- a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/4.1.html
+++ /dev/null
@@ -1,79 +0,0 @@
-<?xml version='1.0' encoding='utf-8' ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml">
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>JGit 4.1 New and Noteworthy</title>
- <link type="text/css" rel="stylesheet" href="../../../book.css"/>
- </head>
- <body>
- <table class="navigation" style="width: 100%;" border="0" summary="navigation">
- <tr>
- <th style="width: 100%" align="center" colspan="3">JGit 4.1 New and Noteworthy</th>
- </tr>
- <tr>
- <td style="width: 20%" align="left"></td>
- <td style="width: 60%" align="center"></td>
- <td style="width: 20%" align="right">
- <a href="Bug-Fixes.html" title="Bug Fixes">
- <img alt="Next" border="0" src="../../../images/next.gif"/>
- </a>
- </td>
- </tr>
- <tr>
- <td style="width: 20%" align="left" valign="top"></td>
- <td style="width: 60%" align="center"></td>
- <td style="width: 20%" align="right" valign="top">Bug Fixes</td>
- </tr>
- </table><hr/>
- <h1 id="JGit">JGit</h1>
- <h2 id="Basic_Support_for_Push_Certificates">Basic Support for Push Certificates</h2>
- <ul>
- <li>Push certificates are used to verify the pusher's identity when a git server receives a signed pack</li>
- <li>Parsing of push certificates</li>
- <li>Storage of push certificates, they are stored in a special ref "refs/meta/push-certs". The filenames in the tree are ref names followed by the special suffix "cert", and the contents are the latest push cert affecting that ref.</li>
- <li>Configuration for server-side signed push verification</li>
- <li>Support for push certificates in BaseReceivePack and RefUpdate</li>
- </ul>
- <h2 id="Ignore_Handling">Ignore Handling</h2>
- <ul>
- <li>Allow leading/trailing spaces in ignore rules</li>
- <li>Allow leading literal '#' and '!' in ignore rules if they are escaped</li>
- <li>Don't trim trailing space if it is escaped with backslash</li>
- </ul>
- <h2 id="Other_Enhancements">Other Enhancements</h2>
- <ul>
- <li>Add setTargetBranch in RepoCommand.</li>
- <li>Add API to remove repositories from RepositoryCache</li>
- <li>Add new submodule layout to SubmoduleAddCommand</li>
- <li>Handle stale NFS file handles on packed-refs file</li>
- <li>Add a grace period for packfiles during GC so that they are retained during GC until configured expiration age is reached</li>
- </ul>
- <h2 id="Performance_Improvements">Performance Improvements</h2>
- <ul>
- <li>Use java.io.File instead of NIO to check existence of loose objects in ObjectDirectory to speed up inserting of loose objects</li>
- <li>Reduce memory consumption when creating bitmaps during writing pack files</li>
- </ul>
- <h2 id="Build_and_Release_Engineering">Build and Release Engineering</h2>
- <ul>
- <li>Enable annotation based NPE analysis in jgit</li>
- <li>Update Jetty to 9.2.13.v20150730</li>
- <li>Update org.apache.httpcomponents to 4.3</li>
- </ul><hr/>
- <table class="navigation" style="width: 100%;" border="0" summary="navigation">
- <tr>
- <td style="width: 20%" align="left"></td>
- <td style="width: 60%" align="center"></td>
- <td style="width: 20%" align="right">
- <a href="Bug-Fixes.html" title="Bug Fixes">
- <img alt="Next" border="0" src="../../../images/next.gif"/>
- </a>
- </td>
- </tr>
- <tr>
- <td style="width: 20%" align="left" valign="top"></td>
- <td style="width: 60%" align="center"></td>
- <td style="width: 20%" align="right" valign="top">Bug Fixes</td>
- </tr>
- </table>
- </body>
-</html> \ No newline at end of file
diff --git a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/4.2.html b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/4.2.html
new file mode 100644
index 0000000000..fdc4645b21
--- /dev/null
+++ b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/4.2.html
@@ -0,0 +1,103 @@
+<?xml version='1.0' encoding='utf-8' ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml">
+ <head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
+ <title>JGit 4.2 New and Noteworthy</title>
+ <link type="text/css" rel="stylesheet" href="../../../book.css"/>
+ </head>
+ <body>
+ <table class="navigation" style="width: 100%;" border="0" summary="navigation">
+ <tr>
+ <th style="width: 100%" align="center" colspan="3">JGit 4.2 New and Noteworthy</th>
+ </tr>
+ <tr>
+ <td style="width: 20%" align="left"></td>
+ <td style="width: 60%" align="center"></td>
+ <td style="width: 20%" align="right">
+ <a href="Bug-Fixes.html" title="Bug Fixes">
+ <img alt="Next" border="0" src="../../../images/next.gif"/>
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td style="width: 20%" align="left" valign="top"></td>
+ <td style="width: 60%" align="center"></td>
+ <td style="width: 20%" align="right" valign="top">Bug Fixes</td>
+ </tr>
+ </table><hr class="navigation-separator"/>
+ <h1 id="JGit">JGit</h1>
+ <h2 id="API">API</h2>
+ <ul>
+ <li>Add RemoteAddCommand</li>
+ <li>Add RemoteListCommand</li>
+ <li>Add RemoteRemoveCommand</li>
+ <li>Add option to allow empty commits to CommitCommand</li>
+ </ul>
+ <h2 id="Configuration">Configuration</h2>
+ <ul>
+ <li>Honor some git-core fsck.* configuration settings</li>
+ </ul>
+ <h2 id="JGit_command_line">JGit command line</h2>
+ <ul>
+ <li>RepoCommand: Add setRecordRemoteBranch option to record upstream branch</li>
+ <li>git rev-parse: Add --verify option</li>
+ <li>Add remote command to JGit command line</li>
+ <li>Reset command support for the -- &lt;paths&gt; parameters</li>
+ <li>Improved online help</li>
+ </ul>
+ <h2 id="Transport">Transport</h2>
+ <ul>
+ <li>Support more encryption algorithms for Amazon S3 storage of git repositories</li>
+ <li>Support atomic push in JGit client</li>
+ </ul>
+ <h2 id="Git_attribute_support">Git attribute support</h2>
+ <ul>
+ <li>Basic support for .gitattribute handling</li>
+ </ul>
+ <h2 id="Support_git-lfs_extension">Support git-lfs extension</h2>
+ <ul>
+ <li>Add support for pre-push hooks</li>
+ <li>Add support for smudge filters. If defined in .gitattributes call smudge filter during checkout.</li>
+ <li>Add support for clean filters. If defined in .gitattributes call clean filter during add to index.</li>
+ </ul>
+ <p>These enhancements enable JGit and EGit to support the git-lfs extension [1] for versioning of large files</p>
+ <p>[1]
+ <a href="https://git-lfs.github.com/" target="egit_external">https://git-lfs.github.com/</a>
+ </p>
+ <h2 id="Performance_Improvements">Performance Improvements</h2>
+ <ul>
+ <li>Improve performance of DirCacheBuilder</li>
+ <li>Speed-up creation of DirCacheEntry</li>
+ <li>Speed-up garbage collection by improving generation of bitmap index</li>
+ <li>Speed-up delta-packing</li>
+ <li>Improve bitmap index calculation to speed-up reachability calculations done during transport</li>
+ </ul>
+ <h2 id="Release_Engineering_and_Build">Release Engineering and Build</h2>
+ <ul>
+ <li>Use japicmp [2] instead of clirr to detect API changes since clirr doesn't support Java 8</li>
+ <li>Use @Nullable annotations to aid detection of NPEs at design time</li>
+ <li>Alternative buck build [3], much faster than Maven, can't build OSGi artefacts yet</li>
+ </ul>
+ <p>[2]
+ <a href="https://github.com/siom79/japicmp" target="egit_external">https://github.com/siom79/japicmp</a>
+ [3]
+ <a href="https://buckbuild.com/" target="egit_external">https://buckbuild.com/</a>
+ </p><hr class="navigation-separator"/>
+ <table class="navigation" style="width: 100%;" border="0" summary="navigation">
+ <tr>
+ <td style="width: 20%" align="left"></td>
+ <td style="width: 60%" align="center"></td>
+ <td style="width: 20%" align="right">
+ <a href="Bug-Fixes.html" title="Bug Fixes">
+ <img alt="Next" border="0" src="../../../images/next.gif"/>
+ </a>
+ </td>
+ </tr>
+ <tr>
+ <td style="width: 20%" align="left" valign="top"></td>
+ <td style="width: 60%" align="center"></td>
+ <td style="width: 20%" align="right" valign="top">Bug Fixes</td>
+ </tr>
+ </table>
+ </body>
+</html> \ No newline at end of file
diff --git a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Bug-Fixes.html b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Bug-Fixes.html
index 8981eaf577..85fa4fc443 100644
--- a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Bug-Fixes.html
+++ b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Bug-Fixes.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>JGit 4.1 New and Noteworthy - Bug Fixes</title>
+ <title>JGit 4.2 New and Noteworthy - Bug Fixes</title>
<link type="text/css" rel="stylesheet" href="../../../book.css"/>
</head>
<body>
@@ -12,7 +12,7 @@
</tr>
<tr>
<td style="width: 20%" align="left">
- <a href="4.1.html" title="JGit 4.1 New and Noteworthy">
+ <a href="4.2.html" title="JGit 4.2 New and Noteworthy">
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
</a>
</td>
@@ -24,25 +24,25 @@
</td>
</tr>
<tr>
- <td style="width: 20%" align="left" valign="top">JGit 4.1 New and Noteworthy</td>
+ <td style="width: 20%" align="left" valign="top">JGit 4.2 New and Noteworthy</td>
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Contributors</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Bug_Fixes">Bug Fixes</h1>
<p>
- <a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&amp;list_id=10006180&amp;order=Importance&amp;product=JGit&amp;query_format=advanced&amp;resolution=FIXED&amp;resolution=DUPLICATE&amp;target_milestone=4.1" target="egit_external">11 Bugs and 3 enhancement requests</a> were closed
- </p><hr/>
+ <a href="https://bugs.eclipse.org/bugs/buglist.cgi?classification=Technology&amp;list_id=10006180&amp;order=Importance&amp;product=JGit&amp;query_format=advanced&amp;resolution=FIXED&amp;resolution=DUPLICATE&amp;target_milestone=4.2" target="egit_external">19 Bugs and 3 enhancement requests</a> were closed
+ </p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
- <a href="4.1.html" title="JGit 4.1 New and Noteworthy">
+ <a href="4.2.html" title="JGit 4.2 New and Noteworthy">
<img alt="Previous" border="0" src="../../../images/prev.gif"/>
</a>
</td>
<td style="width: 60%" align="center">
- <a href="4.1.html" title="JGit 4.1 New and Noteworthy">
- <img alt="JGit 4.1 New and Noteworthy" border="0" src="../../../images/home.gif"/>
+ <a href="4.2.html" title="JGit 4.2 New and Noteworthy">
+ <img alt="JGit 4.2 New and Noteworthy" border="0" src="../../../images/home.gif"/>
</a>
</td>
<td style="width: 20%" align="right">
@@ -52,7 +52,7 @@
</td>
</tr>
<tr>
- <td style="width: 20%" align="left" valign="top">JGit 4.1 New and Noteworthy</td>
+ <td style="width: 20%" align="left" valign="top">JGit 4.2 New and Noteworthy</td>
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Contributors</td>
</tr>
diff --git a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Contributors.html b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Contributors.html
index aca519c55f..dc511e1ac8 100644
--- a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Contributors.html
+++ b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Contributors.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>JGit 4.1 New and Noteworthy - Contributors</title>
+ <title>JGit 4.2 New and Noteworthy - Contributors</title>
<link type="text/css" rel="stylesheet" href="../../../book.css"/>
</head>
<body>
@@ -28,25 +28,37 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Updating This Document</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Contributors">Contributors</h1>
- <p>The following 16 developers worked on this release of JGit :</p>
- <p>Andrey Loskutov,
- Chris Price,
+ <p>The following 28 developers worked on this release of JGit :</p>
+ <p>Andrei Pozolotin,
+ Andrey Loskutov,
+ Arthur Daussy,
+ Chris Gavin,
Christian Halstrick,
Dave Borowitz,
- David Pletcher,
- Fredrik Medley,
- Hugo Arès,
- Jacob Keller,
+ David Ostrovsky,
+ David Pursehouse,
+ Dmitry Neverov,
+ Doug Kelly,
+ Eryk Szymanski,
+ Ivan Motsch,
+ James Kolb,
Jonathan Nieder,
- Martin Fick,
+ Kaloyan Raev,
+ Laurent Delaigue,
Matthias Sohn,
- Patrick Steinhardt,
+ Marc Strapetz,
+ Mike Gilbode,
+ Mike Williams,
+ Rüdiger Herrmann,
+ Sébastien Arod,
Shawn Pearce,
+ Stefan Beller,
Terry Parker,
- Tobias Oberlies,
- Yuxuan 'fishy' Wang</p><hr/>
+ Thomas Meyer,
+ Thomas Wolf,
+ Yuxuan 'fishy' Wang</p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
@@ -55,8 +67,8 @@
</a>
</td>
<td style="width: 60%" align="center">
- <a href="4.1.html" title="JGit 4.1 New and Noteworthy">
- <img alt="JGit 4.1 New and Noteworthy" border="0" src="../../../images/home.gif"/>
+ <a href="4.2.html" title="JGit 4.2 New and Noteworthy">
+ <img alt="JGit 4.2 New and Noteworthy" border="0" src="../../../images/home.gif"/>
</a>
</td>
<td style="width: 20%" align="right">
diff --git a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Updating-This-Document.html b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Updating-This-Document.html
index 907bc748e8..07b2cb2401 100644
--- a/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.1/Updating-This-Document.html
+++ b/org.eclipse.egit.doc/help/JGit/New_and_Noteworthy/4.2/Updating-This-Document.html
@@ -2,7 +2,7 @@
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
- <title>JGit 4.1 New and Noteworthy - Updating This Document</title>
+ <title>JGit 4.2 New and Noteworthy - Updating This Document</title>
<link type="text/css" rel="stylesheet" href="../../../book.css"/>
</head>
<body>
@@ -24,13 +24,13 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top"></td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Updating_This_Document">Updating This Document</h1>
<p> This document is maintained in a collaborative wiki. If you wish to
update or modify this document please visit
- <a href="http://wiki.eclipse.org/JGit/New_and_Noteworthy/4.1" target="egit_external">http://wiki.eclipse.org/JGit/New_and_Noteworthy/4.1</a>
- </p><hr/>
+ <a href="http://wiki.eclipse.org/JGit/New_and_Noteworthy/4.2" target="egit_external">http://wiki.eclipse.org/JGit/New_and_Noteworthy/4.2</a>
+ </p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
@@ -39,8 +39,8 @@
</a>
</td>
<td style="width: 60%" align="center">
- <a href="4.1.html" title="JGit 4.1 New and Noteworthy">
- <img alt="JGit 4.1 New and Noteworthy" border="0" src="../../../images/home.gif"/>
+ <a href="4.2.html" title="JGit 4.2 New and Noteworthy">
+ <img alt="JGit 4.2 New and Noteworthy" border="0" src="../../../images/home.gif"/>
</a>
</td>
<td style="width: 20%" align="right"></td>
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/Advanced-Topics.html b/org.eclipse.egit.doc/help/JGit/User_Guide/Advanced-Topics.html
index bcda478587..1d66d5ed26 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/Advanced-Topics.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/Advanced-Topics.html
@@ -28,7 +28,7 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Updating This Document</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Advanced_Topics">Advanced Topics</h1>
<h2 id="Reducing_memory_usage_with_RevWalk">Reducing memory usage with RevWalk</h2>
<p>The revision walk interface and the RevWalk and RevCommit
@@ -143,7 +143,7 @@ for (RevCommit commit : walk) {
// ...
}
walk.dispose();
-</pre><hr/>
+</pre><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/Concepts.html b/org.eclipse.egit.doc/help/JGit/User_Guide/Concepts.html
index 53d37f2ac6..7e0ff759f2 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/Concepts.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/Concepts.html
@@ -28,7 +28,7 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Reference</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Concepts">Concepts</h1>
<h2 id="API">API</h2>
<h3 id="Repository">Repository</h3>
@@ -117,7 +117,7 @@ RevTag tag = walk.parseTag(objectIdOfTag);
</p>
<pre>RevWalk walk = new RevWalk(repository);
RevTree tree = walk.parseTree(objectIdOfTree);
-</pre><hr/>
+</pre><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/Reference.html b/org.eclipse.egit.doc/help/JGit/User_Guide/Reference.html
index 7bae506c97..d38d8dbffc 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/Reference.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/Reference.html
@@ -28,7 +28,7 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Snippets</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Reference">Reference</h1>
<h2 id="Porcelain_API">Porcelain API</h2>
<p>While JGit contains a lot of low level code to work with Git repositories, it also contains a higher level API that mimics some of the Git porcelain commands in the
@@ -133,7 +133,7 @@ Iterable&lt;RevCommit&gt; log = git.log().call();
<li>force: true/false/yes/no: if true/yes and the branch with the given name already exists, the start-point of an existing branch will be set to a new start-point; if false, the existing branch will not be changed (defaults to false)</li>
</ul>
<h3 id="git-add">git-add</h3>
- <p>TODO</p><hr/>
+ <p>TODO</p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/Snippets.html b/org.eclipse.egit.doc/help/JGit/User_Guide/Snippets.html
index 3ba18ae130..df125cc8b7 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/Snippets.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/Snippets.html
@@ -28,7 +28,7 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Advanced Topics</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Snippets">Snippets</h1>
<h2 id="Finding_children_of_a_commit">Finding children of a commit</h2>
<pre>
@@ -44,7 +44,7 @@ return revWalk;
<h2 id="Snippet_Collection">Snippet Collection</h2>
<p>There is a collection of ready-to-run JGit code snippets available at
<a href="https://github.com/centic9/jgit-cookbook" target="egit_external">https://github.com/centic9/jgit-cookbook</a>
- </p><hr/>
+ </p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/Updating-This-Document.html b/org.eclipse.egit.doc/help/JGit/User_Guide/Updating-This-Document.html
index 35d2f80daf..1f063cad89 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/Updating-This-Document.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/Updating-This-Document.html
@@ -24,13 +24,13 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top"></td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Updating_This_Document">Updating This Document</h1>
<p> This document is maintained in a collaborative wiki. If you wish to
update or modify this document please visit
<a href="http://wiki.eclipse.org/JGit/User_Guide" target="egit_external">http://wiki.eclipse.org/JGit/User_Guide</a>
- </p><hr/>
+ </p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left">
diff --git a/org.eclipse.egit.doc/help/JGit/User_Guide/User-Guide.html b/org.eclipse.egit.doc/help/JGit/User_Guide/User-Guide.html
index 89fa80a1ee..647b811660 100644
--- a/org.eclipse.egit.doc/help/JGit/User_Guide/User-Guide.html
+++ b/org.eclipse.egit.doc/help/JGit/User_Guide/User-Guide.html
@@ -24,7 +24,7 @@
<td style="width: 60%" align="center"></td>
<td style="width: 20%" align="right" valign="top">Concepts</td>
</tr>
- </table><hr/>
+ </table><hr class="navigation-separator"/>
<h1 id="Getting_Started">Getting Started</h1>
<p>If you're new to Git or distributed version control systems generally, then you might want to read
<a href="../../EGit/Git_For_Eclipse_Users/Git-For-Eclipse-Users.html" title="EGit/Git For Eclipse Users">Git for Eclipse Users</a> first. If you need more details and background read the book
@@ -55,7 +55,7 @@ jgit version 0.10.0-SNAPSHOT
<b>-h</b> flag, commands provide a helpful message listing what flags they support.
</p>
<pre>prompt$ ./jgit version -h
-jgit version <a href="--help">(-h)</a>
+jgit version [--help (-h)]
</pre>
<pre> --help (-h) : display this help text
</pre>
@@ -63,7 +63,7 @@ jgit version <a href="--help">(-h)</a>
<b>jgit</b> with no arguments lists the most commonly used commands.
</p>
<pre>prompt$ ./jgit
-jgit --git-dir GIT_DIR --help (-h) --show-stack-trace command <a href="ARG">...</a>
+jgit --git-dir GIT_DIR --help (-h) --show-stack-trace command [ARG ...]
</pre>
<pre>The most commonly used commands are:
branch List, create, or delete branches
@@ -90,7 +90,7 @@ jgit --git-dir GIT_DIR --help (-h) --show-stack-trace command <a href="ARG">...<
<p>Before inspecting the most recent commits, you probably want to know which branches the repository contains and what branch is currently checked out. Using the branch commands -v flag, you get a small summary of branches, their revision, and the first line of the revision's commit message.</p>
<pre>prompt$ ./jgit branch -v
master 4d4adfb Git Project import: don't hide but gray out existing projects
-* traceHistory 6b9fe04 <a href="historyView">historyView</a> Add trace instrumentation
+* traceHistory 6b9fe04 [historyView] Add trace instrumentation
</pre>
<p>The log command, like
<a href="http://www.kernel.org/pub/software/scm/git/docs/git-log.html" target="egit_external">git-log(1)</a>, shows the commit log. For example,
@@ -111,7 +111,7 @@ Date: Fri Oct 08 10:58:52 2010 +0200
<p>This should give you a window with the revision graph plotted to the left and three columns containing the first line of the message, the author name, and the commit date.</p>
<p>
<img border="0" src="images/Jgit-glog.png"/>
- </p><hr/>
+ </p><hr class="navigation-separator"/>
<table class="navigation" style="width: 100%;" border="0" summary="navigation">
<tr>
<td style="width: 20%" align="left"></td>

Back to the top