Java org.eclipse.jgit.dircache DirCacheCheckout fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.dircache DirCacheCheckout fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.dircache DirCacheCheckout.

The text is from its open source code.

Subclass

org.eclipse.jgit.dircache.DirCacheCheckout has subclasses.
Click this link to see all its subclasses.

Constructor

DirCacheCheckout(Repository repo, DirCache dc, ObjectId mergeCommitTree)
Constructs a DirCacheCeckout for checking out one tree, merging with the index.
DirCacheCheckout(Repository repo, ObjectId headCommitTree, DirCache dc, ObjectId mergeCommitTree)
Constructs a DirCacheCeckout for merging and checking out two trees (HEAD and mergeCommitTree) and the index.
DirCacheCheckout(Repository repo, DirCache dc, ObjectId mergeCommitTree, WorkingTreeIterator workingTree)
Constructs a DirCacheCeckout for checking out one tree, merging with the index.

Method

booleancheckout()
Execute this checkout.
voidcheckoutEntry(Repository repo, DirCacheEntry entry, ObjectReader or)
Updates the file in the working tree with content and mode from an entry in the index.
ListgetConflicts()
Get a list of conflicts created by this checkout
ListgetRemoved()
Get list of all files removed by this checkout
ListgetToBeDeleted()
Get list of paths of files which couldn't be deleted during last call to #checkout()
MapgetUpdated()
Get list of updated paths and smudgeFilterCommands
voidsetFailOnConflict(boolean failOnConflict)
If true, will scan first to see if it's possible to check out, otherwise throw org.eclipse.jgit.errors.CheckoutConflictException .