-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.gitignore_global
125 lines (105 loc) · 2.18 KB
/
.gitignore_global
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
# Run `git config --global core.excludesfile ~/.gitignore_global`
# compiled source
*.com
*.class
*.dll
*.exe
*.o
*.so
# packages
# it's better to unpack these files and commit the raw source
# git has its own built in compression methods
*.7z
*.dmg
*.gz
*.iso
*.jar
*.rar
*.tar
*.zip
# ignore all logfiles and tempfiles
/.log
/log/*.log
/tmp
*.log
# ignore other unneeded files
*~
._*
*.bak
*.swp
doc/
.project
.DS_Store
.DS_Store?
.idea
Thumbs.db
.Spotlight-V100
.Trashes
# ==============================================================================
# ruby. taken from github's gitignore:
# https://github.com/github/gitignore/blob/master/Ruby.gitignore
*.gem
*.rbc
/.config
/coverage/
/InstalledFiles
/pkg/
/spec/reports/
/test/tmp/
/test/version_tmp/
/tmp/
## specific to rubymotion:
.dat*
.repl_history
build/
## documentation cache and generated files:
/.yardoc/
/_yardoc/
/doc/
/rdoc/
# ruby: ignore the default SQLite database.
/db/*.sqlite3
/db/*.sqlite3-journal
## environment normalisation:
/.bundle/
/lib/bundler/man/
# for a library or gem, you might want to ignore these files since the code is
# intended to run in multiple environments; otherwise, check them in:
# Gemfile.lock
# .ruby-version
# .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
# ==============================================================================
# rails. taken from github's gitignore:
# https://github.com/github/gitignore/blob/master/Rails.gitignore
*.rbc
capybara-*.html
.rspec
/log
/tmp
/db/*.sqlite3
/db/*.sqlite3-journal
/public/system
/coverage/
/spec/tmp
**.orig
rerun.txt
pickle-email-*.html
# keep your secrets.
config/initializers/secret_token.rb
config/application.yml
## environment normalisation:
/.bundle
/vendor/bundle
# these should all be checked in to normalise the environment:
# Gemfile.lock, .ruby-version, .ruby-gemset
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
.rvmrc
# ignore node modules
node_modules/
# if using bower-rails ignore default bower_components path bower.json files
/vendor/assets/bower_components
*.bowerrc
bower.json
# ==============================================================================