diff options
author | Björn Gustavsson <[email protected]> | 2009-12-09 11:04:51 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2009-12-09 11:04:51 +0000 |
commit | 8fbc15b2502bb6d8c808f4d0c8077c39a1f828e8 (patch) | |
tree | 43edd9ee9faf7f5807c4f88002011f63642cd6b7 /.gitignore | |
parent | 2ff9f0148d4f75990105946eab359074aa83a52d (diff) | |
download | otp-8fbc15b2502bb6d8c808f4d0c8077c39a1f828e8.tar.gz otp-8fbc15b2502bb6d8c808f4d0c8077c39a1f828e8.tar.bz2 otp-8fbc15b2502bb6d8c808f4d0c8077c39a1f828e8.zip |
.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.
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 5 |
1 files changed, 4 insertions, 1 deletions
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 |