From de1838148c1d07493d6143d7162c50636e8bac35 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Wed, 13 Apr 2016 17:46:01 -0700 Subject: [PATCH] Add /obj/ to .gitignore This is the build directory our buildbots use, and right now the bots are running `git clean -f -f -d` to remove all untracked files between runs and this is accidentally deleting `obj`, so we're building LLVM a lot. Hopefully this keeps the bots caching `obj` so we can clean it out manually and leave LLVM around. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 5f1778376ebf4..972f527046b2c 100644 --- a/.gitignore +++ b/.gitignore @@ -78,6 +78,7 @@ /stage3/ /test/ /tmp/ +/obj/ TAGS TAGS.emacs TAGS.vi