From 00e7ff44ca8e7fa9f5552fdfaf81ed09ed1d90f1 Mon Sep 17 00:00:00 2001 From: Josh Triplett Date: Sun, 15 Dec 2019 23:17:06 -0800 Subject: [PATCH] .gitignore: Don't ignore a file that exists in the repository .gitignore should not ignore files that exist in the repository. The ignore of .cargo applies to the committed .cargo directory used in an example: $ git ls-files --exclude-standard --ignored src/test/run-make/thumb-none-qemu/example/.cargo/config Explicitly un-ignore that file. --- .gitignore | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitignore b/.gitignore index 487867c375d..1428ee6c9bc 100644 --- a/.gitignore +++ b/.gitignore @@ -55,5 +55,6 @@ config.mk config.stamp Session.vim .cargo +!/src/test/run-make/thumb-none-qemu/example/.cargo no_llvm_build # Before adding new lines, see the comment at the top.