1+ # -----------------------------------------------------------------
2+ # .gitignore
3+ # Bare Minimum Git
4+ # http://ironco.de/bare-minimum-git/
5+ # ver 20170502
6+ #
7+ # From the root of your project run
8+ # curl -O https://gist.githubusercontent.com/salcode/10017553/raw/.gitignore
9+ # to download this file
10+ #
11+ # This file is tailored for a general web project, it
12+ # is NOT optimized for a WordPress project. See
13+ # https://gist.github.com/salcode/b515f520d3f8207ecd04
14+ # for a WordPress specific .gitignore
15+ #
16+ # This file specifies intentionally untracked files to ignore
17+ # http://git-scm.com/docs/gitignore
18+ #
19+ # NOTES:
20+ # The purpose of gitignore files is to ensure that certain files not
21+ # tracked by Git remain untracked.
22+ #
23+ # To ignore uncommitted changes in a file that is already tracked,
24+ # use `git update-index --assume-unchanged`.
25+ #
26+ # To stop tracking a file that is currently tracked,
27+ # use `git rm --cached`
28+ #
29+ # Change Log:
30+ # 20170502 unignore composer.lock
31+ # 20170502 ignore components loaded via Bower
32+ # 20150326 ignore jekyll build directory `/_site`
33+ # 20150324 Reorganized file to list ignores first and whitelisted last,
34+ # change WordPress .gitignore link to preferred gist,
35+ # add curl line for quick installation
36+ # ignore composer files (vendor directory and lock file)
37+ # 20140606 Add .editorconfig as a tracked file
38+ # 20140418 remove explicit inclusion
39+ # of readme.md (this is not an ignored file by default)
40+ # 20140407 Initially Published
41+ #
42+ # -----------------------------------------------------------------
43+
44+ # ignore all files starting with . or ~
45+ . *
46+ ~ *
47+
48+ # ignore node/grunt dependency directories
49+ node_modules /
50+
51+ # ignore composer vendor directory
52+ /vendor
53+
54+ # ignore components loaded via Bower
55+ /bower_components
56+
57+ # ignore jekyll build directory
58+ /_site
59+
60+ # ignore OS generated files
61+ ehthumbs.db
62+ Thumbs.db
63+
64+ # ignore Editor files
65+ * .sublime-project
66+ * .sublime-workspace
67+ * .komodoproject
68+
69+ # ignore log files and databases
70+ * .log
71+ * .sql
72+ * .sqlite
73+
74+ # ignore compiled files
75+ * .com
76+ * .class
77+ * .dll
78+ * .exe
79+ * .o
80+ * .so
81+
82+ # ignore packaged files
83+ * .7z
84+ * .dmg
85+ * .gz
86+ * .iso
87+ * .jar
88+ * .rar
89+ * .tar
90+ * .zip
91+
92+ # -------------------------
93+ # BEGIN Whitelisted Files
94+ # -------------------------
95+
96+ # track these files, if they exist
97+ ! .gitignore
98+ ! .editorconfig
0 commit comments