1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/sha.R
\name{sha}
\alias{sha}
\alias{sha.git_blob}
\alias{sha.git_branch}
\alias{sha.git_commit}
\alias{sha.git_note}
\alias{sha.git_reference}
\alias{sha.git_reflog_entry}
\alias{sha.git_tag}
\alias{sha.git_tree}
\alias{sha.git_fetch_head}
\alias{sha.git_merge_result}
\title{Get the SHA-1 of a git object}
\usage{
sha(object)
\method{sha}{git_blob}(object)
\method{sha}{git_branch}(object)
\method{sha}{git_commit}(object)
\method{sha}{git_note}(object)
\method{sha}{git_reference}(object)
\method{sha}{git_reflog_entry}(object)
\method{sha}{git_tag}(object)
\method{sha}{git_tree}(object)
\method{sha}{git_fetch_head}(object)
\method{sha}{git_merge_result}(object)
}
\arguments{
\item{object}{a git object to get the SHA-1 from.}
}
\value{
The 40 character hexadecimal string of the SHA-1.
}
\description{
Get the 40 character hexadecimal string of the SHA-1.
}
\examples{
\dontrun{
## Create a directory in tempdir
path <- tempfile(pattern="git2r-")
dir.create(path)
## Initialize a repository
repo <- init(path)
config(repo, user.name = "Alice", user.email = "alice@example.org")
## Create a file, add and commit
lines <- "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do"
writeLines(lines, file.path(path, "test.txt"))
add(repo, "test.txt")
commit(repo, "Commit message 1")
## Get the SHA-1 of the last commit
sha(last_commit(repo))
}
}
|