Skip to content

Commit 8646963

Browse files
committed
Merge branch 'master' of https://github.com/github/gitignore
2 parents 43de894 + 1a3b885 commit 8646963

File tree

9 files changed

+66
-35
lines changed

9 files changed

+66
-35
lines changed

Android.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
bin/
1313
gen/
1414

15+
# Ignore gradle files
16+
.gradle/
17+
build/
18+
1519
# Local configuration file (sdk path, etc)
1620
local.properties
1721

18-
# Eclipse project files
19-
.classpath
20-
.project
21-
2222
# Proguard folder generated by Eclipse
2323
proguard/

Django.gitignore

Lines changed: 0 additions & 4 deletions
This file was deleted.

Global/BricxCC.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# Bricx Command Center IDE
2+
# http://bricxcc.sourceforge.net
3+
*.bak
4+
*.sym

Python.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,8 @@ coverage.xml
3737
.mr.developer.cfg
3838
.project
3939
.pydevproject
40+
41+
42+
-# Django stuff:
43+
-*.log
44+
-*.pot

Rails.gitignore

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@
33
.sass-cache
44
capybara-*.html
55
.rspec
6-
.rvmrc
7-
/.bundle
8-
/vendor/bundle
96
/log
107
/tmp
118
/db/*.sqlite3
@@ -16,3 +13,13 @@ capybara-*.html
1613
rerun.txt
1714
pickle-email-*.html
1815
config/initializers/secret_token.rb
16+
17+
## Environment normalisation:
18+
/.bundle
19+
/vendor/bundle
20+
21+
# these should all be checked in to normalise the environment:
22+
# Gemfile.lock, .ruby-version, .ruby-gemset
23+
24+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
25+
.rvmrc

Ruby.gitignore

Lines changed: 26 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
*.gem
22
*.rbc
3-
.bundle
4-
.config
5-
coverage
6-
InstalledFiles
7-
lib/bundler/man
8-
pkg
9-
rdoc
10-
spec/reports
11-
test/tmp
12-
test/version_tmp
13-
tmp
3+
/.config
4+
/coverage/
5+
/InstalledFiles
6+
/pkg/
7+
/spec/reports/
8+
/test/tmp/
9+
/test/version_tmp/
10+
/tmp/
1411

15-
# YARD artifacts
16-
.yardoc
17-
_yardoc
18-
doc/
12+
## Documentation cache and generated files:
13+
/.yardoc/
14+
/_yardoc/
15+
/doc/
16+
/rdoc/
17+
18+
## Environment normalisation:
19+
/.bundle/
20+
/lib/bundler/man/
21+
22+
# for a library or gem, you might want to ignore these files since the code is
23+
# intended to run in multiple environments; otherwise, check them in:
24+
# Gemfile.lock
25+
# .ruby-version
26+
# .ruby-gemset
27+
28+
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
29+
.rvmrc

Unity.gitignore

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
[Oo]bj/
44

55
# Autogenerated VS/MD solution and project files
6-
*.csproj
7-
*.unityproj
8-
*.sln
9-
*.suo
10-
*.user
6+
/*.csproj
7+
/*.unityproj
8+
/*.sln
9+
/*.suo
10+
/*.user

VisualStudio.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
*.sln.docstates
88

99
# Build results
10-
1110
[Dd]ebug/
1211
[Rr]elease/
1312
x64/
1413
build/
14+
bld/
1515
[Bb]in/
1616
[Oo]bj/
1717

@@ -22,6 +22,10 @@ build/
2222
[Tt]est[Rr]esult*/
2323
[Bb]uild[Ll]og.*
2424

25+
#NUNIT
26+
*.VisualState.xml
27+
TestResult.xml
28+
2529
*_i.c
2630
*_p.c
2731
*_i.h
@@ -100,13 +104,14 @@ publish/
100104

101105
# Publish Web Output
102106
*.Publish.xml
107+
*.azurePubxml
103108

104109
# NuGet Packages Directory
105110
## TODO: If you have NuGet Package Restore enabled, uncomment the next line
106111
#packages/
107112

108113
# Windows Azure Build Output
109-
csx
114+
csx/
110115
*.build.csdef
111116

112117
# Windows Store app package directory

Yii.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
assets/
2-
protected/runtime/
1+
assets/*
2+
!assets/.gitignore
3+
protected/runtime/*
4+
!protected/runtime/.gitignore
5+
protected/data/*.db
36
themes/classic/views/

0 commit comments

Comments
 (0)