From 8fbc15b2502bb6d8c808f4d0c8077c39a1f828e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Gustavsson?= Date: Wed, 9 Dec 2009 11:04:51 +0000 Subject: .gitignore: Don't ignore script/boot files in bootstrap/bin The .gitignore files ignores everything in the bootstrap/bin directory, includ checked-in *.boot and *.script files. That makes it impossible to check in updates to those files without using the -f (force option) with "git add". Fix this by adding a negated pattern for script and boot files. --- .gitignore | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to '.gitignore') diff --git a/.gitignore b/.gitignore index 0207d07dfe..fba85d2da1 100644 --- a/.gitignore +++ b/.gitignore @@ -7,7 +7,10 @@ autom4te.cache /lib/*/ebin -/bootstrap/bin +/bootstrap/bin/* +!/bootstrap/bin/*.script +!/bootstrap/bin/*.boot + /bootstrap/lib/asn1 /bootstrap/lib/hipe /bootstrap/lib/ic -- cgit v1.2.3