From e23e63e822c3595bbf83f33b1ce9f477316e0d7d Mon Sep 17 00:00:00 2001 From: Bill Denney Date: Tue, 28 Jul 2026 08:42:58 -0400 Subject: [PATCH] chore: gitignore R build artifacts These are produced by R CMD INSTALL/build/check on a normal developer machine and were showing up as untracked in every status, which also blocks 'git pull --ff-only' on the default branch. Co-Authored-By: Claude Opus 5 --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index d8f8d46..426497b 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,8 @@ docs + +# Build artifacts (R CMD build/INSTALL/check output) +*.Rcheck/ +*.tar.gz +*.tgz +.RData +.Rhistory