# get_latest_commit ## Description get_latest_commit ## Usage ```r get_latest_commit(org, repo, branch = NULL) ``` ## Arguments * `org`: Github organization * `repo`: Github repository * `branch`: Branch from which to get latest commit ## Note This returns the latest commit from the default branch as specified on GitHub, which will not necessarily be the same as information returned from `gert::git_info` if the `HEAD` of a local repository does not point to the same default branch. ## Seealso Other github: `[get_default_github_branch](get_default_github_branch)()`, `[get_gh_token](get_gh_token)()`, `[use_github_action_pkgcheck](use_github_action_pkgcheck)()` ## Concept github ## Value Details of latest commit including OID hash ## Examples ```r org <- "ropensci-review-tools" repo <- "pkgcheck" commit <- get_latest_commit (org, repo) ```