Skip to contents

This function can be used to log any changes to files to GitHub. It should be used for any changes that do not constitute major milestones, such as regular code updates. For milestone commits, use `projectlog::log_milestones`. You can use this function routinely to update the remote Github repository with your latest changes. This way, you make sure that the changes are safely stored remotely.

Usage

log_changes(files = ".", commit_message)

Arguments

files

A vector of files that you want to commit. Use "." to commit all changed files. Use `gert::git_status` to get an overview of all the files that have been changed since the last commit.

commit_message

A message that will be added to your commit to Github. Here, you can give more detailed information about the nature of the changes.

Value

Nothing. This function is called for its side-effects.