Package | Description |
---|---|
org.eclipse.jgit.api |
High-level API commands (the porcelain of JGit).
|
Modifier and Type | Method and Description |
---|---|
ArchiveCommand |
Git.archive()
Return a command to create an archive from a tree
|
ArchiveCommand |
ArchiveCommand.setFilename(java.lang.String filename)
Set the intended filename for the produced archive.
|
ArchiveCommand |
ArchiveCommand.setFormat(java.lang.String fmt)
Set archive format
|
ArchiveCommand |
ArchiveCommand.setFormatOptions(java.util.Map<java.lang.String,java.lang.Object> options)
Set archive format options
|
ArchiveCommand |
ArchiveCommand.setOutputStream(java.io.OutputStream out)
Set output stream
|
ArchiveCommand |
ArchiveCommand.setPaths(java.lang.String... paths)
Set an optional parameter path.
|
ArchiveCommand |
ArchiveCommand.setPrefix(java.lang.String prefix)
Set string prefixed to filenames in archive
|
ArchiveCommand |
ArchiveCommand.setTree(ObjectId tree)
Set the tag, commit, or tree object to produce an archive for
|