From a94e94652748e654c5c945e2e822b56ebf394b76 Mon Sep 17 00:00:00 2001 From: Owen Jacobson Date: Wed, 28 May 2025 13:25:58 -0400 Subject: 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. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 7a5c67e..5966399 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ +/.envrc.local /node_modules /target /.hi -- cgit v1.2.3