From 79a5ddc68f758ab1b6f3f1502b70744ce7860201 Mon Sep 17 00:00:00 2001 From: Greg Price Date: Fri, 17 Nov 2017 14:26:40 -0800 Subject: [PATCH] gitignore: Fix format for excluding .cache/. Comments in gitignore files must be on their own line. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 49515fb529..11554a8c3e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,8 @@ # * Subdirectories with several internal things to ignore get their own # `.gitignore` files. # +# * Comments must be on their own line. (Otherwise they don't work.) +# # See `git help ignore` for details on the format. ## Config files for the dev environment @@ -52,7 +54,8 @@ zulip.kdev4 *.sublime-workspace .vscode/ *.DS_Store -.cache/ # Generated by VSCode's test runner +# .cache/ is generated by VSCode's test runner +.cache/ ## Miscellaneous # (Ideally this section is empty.)