Example usage for Java org.eclipse.jgit.lib Constants fields, constructors, methods, implement or subclass
The text is from its open source code.
int | OBJECT_ID_LENGTH A Git object hash is 160 bits, i.e. |
int | OBJECT_ID_STRING_LENGTH A Git object can be expressed as a 40 character string of hexadecimal digits. |
String | HEAD Special name for the "HEAD" symbolic-ref. |
String | FETCH_HEAD Special name for the "FETCH_HEAD" symbolic-ref. |
String | TYPE_COMMIT Text string that identifies an object as a commit. |
String | TYPE_BLOB Text string that identifies an object as a blob. |
String | TYPE_TREE Text string that identifies an object as a tree. |
String | TYPE_TAG Text string that identifies an object as an annotated tag. |
int | OBJ_BAD An unknown or invalid object type code. |
int | OBJ_EXT In-pack object type: extended types. |
int | OBJ_COMMIT In-pack object type: commit. |
int | OBJ_TREE In-pack object type: tree. |
int | OBJ_BLOB In-pack object type: blob. |
int | OBJ_TAG In-pack object type: annotated tag. |
int | OBJ_TYPE_5 In-pack object type: reserved for future use. |
int | OBJ_OFS_DELTA In-pack object type: offset delta Objects stored with this type actually have a different type which must be obtained from their delta base object. |
int | OBJ_REF_DELTA In-pack object type: reference delta Objects stored with this type actually have a different type which must be obtained from their delta base object. |
Charset | CHARSET Native character encoding for commit messages, file names... |
String | CHARACTER_ENCODING Native character encoding for commit messages, file names... |
String | MASTER Default main branch name |
String | R_HEADS Prefix for branch refs |
String | R_REMOTES Prefix for remotes refs |
String | R_TAGS Prefix for tag refs |
String | R_NOTES Prefix for notes refs |
String | R_NOTES_COMMITS Standard notes ref |
String | R_REFS Prefix for any ref |
String | R_STASH Standard stash ref |
String | LOGS Logs folder name |
String | INFO_REFS Info refs folder |
String | PACKED_REFS Packed refs file |
String | INFO_EXCLUDE Excludes-file |
String | OS_USER_NAME_KEY The system property that contains the system user name |
String | GIT_AUTHOR_NAME_KEY The environment variable that contains the author's name |
String | GIT_AUTHOR_EMAIL_KEY The environment variable that contains the author's email |
String | GIT_COMMITTER_NAME_KEY The environment variable that contains the commiter's name |
String | GIT_COMMITTER_EMAIL_KEY The environment variable that contains the commiter's email |
String | GIT_CONFIG_NOSYSTEM_KEY The environment variable that blocks use of the system config file |
String | GIT_CEILING_DIRECTORIES_KEY The environment variable that limits how close to the root of the file systems JGit will traverse when looking for a repository root. |
String | SIGNED_OFF_BY_TAG Beginning of the common "Signed-off-by: " commit message line |
String | GITIGNORE_FILENAME A gitignore file name |
String | DEFAULT_REMOTE_NAME Default remote name used by clone, push and fetch operations |
String | DOT_GIT Default name for the Git repository directory |
String | CONFIG Default name for the Git repository configuration |
String | DOT_GIT_EXT A bare repository typically ends with this string |
String | DOT_GIT_IGNORE Name of the ignore file |
String | DOT_GIT_MODULES Name of the submodules file |
String | MODULES Name of the folder (inside gitDir) where submodules are stored |
String | MERGE_MSG name of the file containing the commit msg for a merge commit |
String | MERGE_HEAD name of the file containing the IDs of the parents of a merge commit |
String | CHERRY_PICK_HEAD name of the file containing the ID of a cherry pick commit in case of conflicts |
String | ORIG_HEAD name of the ref ORIG_HEAD used by certain commands to store the original value of HEAD |
byte[] | encode(String str) Convert a string to a byte array in the standard character encoding. |
byte[] | encodeASCII(long s) Convert an integer into its decimal representation. |
byte[] | encodeASCII(String s) Convert a string to US-ASCII encoding. |
MessageDigest | newMessageDigest() Create a new digest function for objects. |
String | typeString(int typeCode) Convert an OBJ_* type constant to a TYPE_* type constant. |