summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOwen Jacobson <owen@grimoire.ca>2025-05-28 13:25:58 -0400
committerOwen Jacobson <owen@grimoire.ca>2025-05-28 13:25:58 -0400
commita94e94652748e654c5c945e2e822b56ebf394b76 (patch)
tree4d815e2a2b1adf99b086f09c5f1bfe8e02420954
parent79d3598282fd573931e7cb14e4d3e54aad7c943c (diff)
Do not track .envrc.local files.
This was a simple omission on my part. In f26dd0d662d8fc33108d072031329e707f54300b, I added a `.envrc` file that was intended to be tracked, and had it reference `.envrc.local` so that others could customize the environment, through direnv, without requiring that those changes be submitted upstream. I forgor to mark that file as ignored. It never bit us, but I tried to use a .envrc.local file today to experiment on some Node-specific PATH ideas (I want to be able to run `vite` without `npx`!) and noticed that Git wanted to track my config.
-rw-r--r--.gitignore1
1 files changed, 1 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7a5c67e..5966399 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,3 +1,4 @@
+/.envrc.local
/node_modules
/target
/.hi