-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathcommit_version.Rd
34 lines (34 loc) · 1.11 KB
/
commit_version.Rd
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
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/api-commit-version.R
\name{commit_version}
\alias{commit_version}
\title{Commits NEWS.md and DESCRIPTION to Git}
\usage{
commit_version()
}
\value{
Invisibly: \code{TRUE} if a previous commit for that version has been
amended, \code{FALSE} if not.
}
\description{
Commits changes to \code{NEWS.md} and \code{DESCRIPTION}, amending a previous commit
created by \pkg{fledge} if necessary.
}
\examples{
# Create mock package in a temporary directory.
# Set open to TRUE if you want to play in the mock package.
with_demo_project({
# Use functions as if inside the newly created package project.
# (Or go and actually run code inside the newly created package project!)
# Add a new R file.
usethis::use_r("cool-function", open = FALSE)
# Pretend we added useful code inside it.
# Track the new R file with Git.
gert::git_add("R/cool-function.R")
gert::git_commit("- Add cool function.")
# Bump version with fledge.
fledge::bump_version()
desc::desc_add_author(given = "Jane", family = "Doe", role = "ctb")
fledge::commit_version()
})
}