From d1ad51f1a69d8b73725056894b2f87d41dd82bca Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ji=C5=99=C3=AD=20Str=C3=A1nsk=C3=BD?= Date: Sun, 16 Feb 2014 22:47:42 +0100 Subject: [PATCH] Gitignore *.elc When using this multiple-cursors.el repository as a submodule and using compilation from .el to .elc, git will report the .elc files as untracked changes in the submodule. Ignoring *.elc files fixes that. --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f6ecda91..6d7875cd 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -elpa \ No newline at end of file +elpa +*.elc