Uses of Class
org.eclipse.jgit.lib.PersonIdent
Packages that use PersonIdent
Package
Description
High-level API commands (the porcelain of JGit).
Computing blame/annotate information of files.
File based repository storage.
Core API for repository, config, refs, object database.
Walking revision graphs (commit history).
Transport (fetch/push) for different protocols.
Utility classes.
-
Uses of PersonIdent in org.eclipse.jgit.api
Methods in org.eclipse.jgit.api that return PersonIdentModifier and TypeMethodDescriptionCommitCommand.getAuthor()Get the authorCommitCommand.getCommitter()Get the committerTagCommand.getTagger()Get thetaggerwho created the tag.Methods in org.eclipse.jgit.api with parameters of type PersonIdentModifier and TypeMethodDescriptionCommitCommand.setAuthor(PersonIdent author) Sets the author for thiscommit.CommitCommand.setCommitter(PersonIdent committer) Sets the committer for thiscommit.StashCreateCommand.setPerson(PersonIdent person) Set the person to use as the author and committer in the commits madeTagCommand.setTagger(PersonIdent tagger) Sets the tagger of the tag. -
Uses of PersonIdent in org.eclipse.jgit.blame
Methods in org.eclipse.jgit.blame that return PersonIdentModifier and TypeMethodDescriptionBlameGenerator.getSourceAuthor()Get source authorBlameResult.getSourceAuthor(int idx) Get the author that provided the specified line of the result.BlameGenerator.getSourceCommitter()Get source committerBlameResult.getSourceCommitter(int idx) Get the committer that provided the specified line of the result. -
Uses of PersonIdent in org.eclipse.jgit.gitrepo
Methods in org.eclipse.jgit.gitrepo with parameters of type PersonIdentModifier and TypeMethodDescriptionRepoCommand.setAuthor(PersonIdent author) Set the author/committer for the bare repository commit. -
Uses of PersonIdent in org.eclipse.jgit.internal.storage.file
Methods in org.eclipse.jgit.internal.storage.file that return PersonIdentMethods in org.eclipse.jgit.internal.storage.file with parameters of type PersonIdentModifier and TypeMethodDescriptionWrite the given entry information to the ref's log -
Uses of PersonIdent in org.eclipse.jgit.internal.storage.reftable
Methods in org.eclipse.jgit.internal.storage.reftable with parameters of type PersonIdent -
Uses of PersonIdent in org.eclipse.jgit.lib
Methods in org.eclipse.jgit.lib that return PersonIdentModifier and TypeMethodDescriptionCommitBuilder.getAuthor()Get the author of this commit (who wrote it).protected PersonIdentObjectBuilder.getAuthor()Retrieves the author of this object.CommitBuilder.getCommitter()Get the committer and commit time for this object.BatchRefUpdate.getRefLogIdent()Get identity of the user making the change in the reflog.RefRename.getRefLogIdent()Get identity of the user making the change in the reflog.RefUpdate.getRefLogIdent()Get identity of the user making the change in the reflog.TagBuilder.getTagger()Get creator of this tag.ReflogEntry.getWho()Get user performing the changeMethods in org.eclipse.jgit.lib with parameters of type PersonIdentModifier and TypeMethodDescriptionbooleanSigner.canLocateSigningKey(Repository repository, GpgConfig config, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Indicates if a signing key is available for the specified committer and/or signing key.voidCommitBuilder.setAuthor(PersonIdent newAuthor) Set the author (name, email address, and date) of who wrote the commit.protected voidObjectBuilder.setAuthor(PersonIdent newAuthor) Sets the author (name, email address, and date) of this object.voidCommitBuilder.setCommitter(PersonIdent newCommitter) Set the committer and commit time for this object.BatchRefUpdate.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidRefRename.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidRefUpdate.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the reflog.voidTagBuilder.setTagger(PersonIdent taggerIdent) Set the creator of this tag.Signer.sign(Repository repository, GpgConfig config, byte[] data, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Signs arbitrary data.default voidSigner.signObject(Repository repository, GpgConfig config, ObjectBuilder object, PersonIdent committer, String signingKey, CredentialsProvider credentialsProvider) Signs the specified object.Constructors in org.eclipse.jgit.lib with parameters of type PersonIdentModifierConstructorDescriptionCopy aPersonIdent.PersonIdent(PersonIdent pi, long aWhen, int aTZ) Deprecated.Use the variant with Instant and ZoneId insteadPersonIdent(PersonIdent pi, Instant aWhen) Copy aPersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, Instant when, ZoneId tz) Copy a PersonIdent, but alter the clone's time stampPersonIdent(PersonIdent pi, Date aWhen) Deprecated.Use the variant with an Instant insteadPersonIdent(PersonIdent pi, Date when, TimeZone tz) Deprecated.UsePersonIdent(PersonIdent, Instant, ZoneId)instead. -
Uses of PersonIdent in org.eclipse.jgit.revwalk
Methods in org.eclipse.jgit.revwalk that return PersonIdentModifier and TypeMethodDescriptionfinal PersonIdentRevCommit.getAuthorIdent()Parse the author identity from the raw buffer.final PersonIdentRevCommit.getCommitterIdent()Parse the committer identity from the raw buffer.final PersonIdentRevTag.getTaggerIdent()Parse the tagger identity from the raw buffer. -
Uses of PersonIdent in org.eclipse.jgit.transport
Methods in org.eclipse.jgit.transport that return PersonIdentModifier and TypeMethodDescriptionReceivePack.getRefLogIdent()Get identity of the user making the changes in the reflog.Methods in org.eclipse.jgit.transport with parameters of type PersonIdentModifier and TypeMethodDescriptionvoidPushCertificateStore.put(PushCertificate cert, PersonIdent ident) Put a certificate to be saved to the store.voidPushCertificateStore.put(PushCertificate cert, PersonIdent ident, Collection<ReceiveCommand> matching) Put a certificate to be saved to the store, matching a set of commands.voidReceivePack.setRefLogIdent(PersonIdent pi) Set the identity of the user appearing in the affected reflogs. -
Uses of PersonIdent in org.eclipse.jgit.util
Methods in org.eclipse.jgit.util that return PersonIdentModifier and TypeMethodDescriptionstatic PersonIdentRawParseUtils.parsePersonIdent(byte[] raw, int nameB) Parse a name line (e.g.static PersonIdentRawParseUtils.parsePersonIdent(String in) Parse a name string (e.g.static PersonIdentRawParseUtils.parsePersonIdentOnly(byte[] raw, int nameB) Parse a name data (e.g.Methods in org.eclipse.jgit.util with parameters of type PersonIdentModifier and TypeMethodDescriptionstatic ObjectIdChangeIdUtil.computeChangeId(ObjectId treeId, ObjectId firstParentId, PersonIdent author, PersonIdent committer, String message) Compute a Change-Id.GitDateFormatter.formatDate(PersonIdent ident) Format committer, author or tagger ident according to this formatter's specification.static StringSignatureUtils.toString(SignatureVerifier.SignatureVerification verification, PersonIdent creator, GitDateFormatter formatter) Writes information about a signature verification to a string.