2026-01-15
Version control is the answer to this file naming problem.Image Source “Piled Higher and Deeper” by Jorge Cham www.phdcomics.com
In a system terminal, run…
git config --global user.name 'YOUR NAME HERE' git config --global user.email 'YOUR EMAIL HERE' git config --global --list # check to see it worked
Alternatively, in R run:
usethis::use_git_config(user.name = 'YOUR NAME HERE', user.email = 'YOUR EMAIL HERE') usethis::git_sitrep() # check what R knows about git
Instructions
(Demo)
Review: General Programming
Know how to: