Class GitmoduleEntry

java.lang.Object
org.eclipse.jgit.lib.GitmoduleEntry

public final class GitmoduleEntry extends Object
A .gitmodules file found in the pack. Store the blob of the file itself (e.g. to access its contents) and the tree where it was found (e.g. to check if it is in the root)
Since:
4.7.5
  • Field Details

  • Constructor Details

    • GitmoduleEntry

      public GitmoduleEntry(AnyObjectId treeId, AnyObjectId blobId)
      A record of (tree, blob) for a .gitmodule file in a pack
      Parameters:
      treeId - tree id containing a .gitmodules entry
      blobId - id of the blob of the .gitmodules file
  • Method Details

    • getBlobId

      public AnyObjectId getBlobId()
      Returns:
      Id of a .gitmodules file found in the pack
    • getTreeId

      public AnyObjectId getTreeId()
      Returns:
      Id of a tree object where the .gitmodules file was found