commit_and_tag.Rd
This function commits all changes in the current directory to Git, creates a tag for the specified version, and pushes both the commit and the tag to the remote repository.
commit_and_tag(version = "1.0.0", message = paste("Release version", version))
This function returns a message indicating whether the operations were successful or not.
if (FALSE) { # \dontrun{
commit_and_tag("1.0.2")
} # }