This function creates a tag for the specified version and pushes the tag to the remote repository.

git_tag_push(version = "1.0.0", message = paste("Release version", version))

Arguments

version

A string specifying the version number for the tag. Default is "1.0.0".

message

A string specifying the tag message. Default is constructed as "Release version " followed by the version number.

Value

This function returns a message indicating whether the tag operation was successful or not.

Examples

if (FALSE) { # \dontrun{
  git_tag_push("1.0.2")
} # }