Browse Source
These appear as descriptions in the index, see here (currently empty): http://download.eclipse.org/jgit/docs/latest/apidocs/ Change-Id: If7996deef30ae688bade8b3ad6b19547ca3d8b50 Signed-off-by: Chris Aniszczyk <zx@twitter.com>stable-2.2
Robin Stocker
12 years ago
committed by
Chris Aniszczyk
28 changed files with 112 additions and 0 deletions
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Exceptions thrown by API commands. |
||||
*/ |
||||
package org.eclipse.jgit.api.errors; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* High-level API commands (the porcelain of JGit). |
||||
*/ |
||||
package org.eclipse.jgit.api; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Computing blame/annotate information of files. |
||||
*/ |
||||
package org.eclipse.jgit.blame; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Comparing file contents by computing diffs. |
||||
*/ |
||||
package org.eclipse.jgit.diff; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Reading and editing the directory cache (index). |
||||
*/ |
||||
package org.eclipse.jgit.dircache; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Exceptions thrown by lower-level JGit APIs. |
||||
*/ |
||||
package org.eclipse.jgit.errors; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Events and listener interfaces. |
||||
*/ |
||||
package org.eclipse.jgit.events; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* File name matcher. |
||||
*/ |
||||
package org.eclipse.jgit.fnmatch; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Ignore rule parser/matcher (for .gitignore entries). |
||||
*/ |
||||
package org.eclipse.jgit.ignore; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Internal classes. |
||||
*/ |
||||
package org.eclipse.jgit.internal; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Core API for repository, config, refs, object database. |
||||
*/ |
||||
package org.eclipse.jgit.lib; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Content and commit history merge algorithms. |
||||
*/ |
||||
package org.eclipse.jgit.merge; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Native language support (i18n). |
||||
*/ |
||||
package org.eclipse.jgit.nls; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Git notes processing (for commits, etc). |
||||
*/ |
||||
package org.eclipse.jgit.notes; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Patch file parser and data structure. |
||||
*/ |
||||
package org.eclipse.jgit.patch; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Building/rendering revision graphs. |
||||
*/ |
||||
package org.eclipse.jgit.revplot; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Filters for use in revision walking. |
||||
*/ |
||||
package org.eclipse.jgit.revwalk.filter; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Walking revision graphs (commit history). |
||||
*/ |
||||
package org.eclipse.jgit.revwalk; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Distributed file system based repository storage. |
||||
*/ |
||||
package org.eclipse.jgit.storage.dfs; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* File based repository storage. |
||||
*/ |
||||
package org.eclipse.jgit.storage.file; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Reading/writing Git pack files. |
||||
*/ |
||||
package org.eclipse.jgit.storage.pack; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Git submodule support. |
||||
*/ |
||||
package org.eclipse.jgit.submodule; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Transport (fetch/push) for different protocols. |
||||
*/ |
||||
package org.eclipse.jgit.transport; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Server-side resolver for locating repositories by URLs. |
||||
*/ |
||||
package org.eclipse.jgit.transport.resolver; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Filters for use in tree walking. |
||||
*/ |
||||
package org.eclipse.jgit.treewalk.filter; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Walking and comparing directory/file trees (of commits, file system). |
||||
*/ |
||||
package org.eclipse.jgit.treewalk; |
@ -0,0 +1,4 @@
|
||||
/** |
||||
* Utility classes for IO (streams). |
||||
*/ |
||||
package org.eclipse.jgit.util.io; |
Loading…
Reference in new issue