Skip to content

Commit 1a1de19

Browse files
committed
Merge remote-tracking branch 'origin/master' into pr/506
Conflicts: Yii.gitignore
2 parents 407664c + 8335a5d commit 1a1de19

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+515
-408
lines changed

Actionscript.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,4 @@ bin-release/
88

99
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
1010
# should NOT be excluded as they contain compiler settings and other important
11-
# information for Eclipse / Flash Builder.
11+
# information for Eclipse / Flash Builder.

Android.gitignore

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,3 @@ local.properties
2121

2222
# Proguard folder generated by Eclipse
2323
proguard/
24-
25-
# Intellij project files
26-
*.iml
27-
*.ipr
28-
*.iws
29-
.idea/
30-

C++.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,20 @@
22
*.slo
33
*.lo
44
*.o
5+
*.obj
56

67
# Compiled Dynamic libraries
78
*.so
89
*.dylib
10+
*.dll
911

1012
# Compiled Static libraries
1113
*.lai
1214
*.la
1315
*.a
16+
*.lib
17+
18+
# Executables
19+
*.exe
20+
*.out
21+
*.app

C.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Object files
22
*.o
3+
*.ko
4+
*.obj
5+
*.elf
36

47
# Libraries
58
*.lib
@@ -15,3 +18,4 @@
1518
*.exe
1619
*.out
1720
*.app
21+
*.hex

CONTRIBUTING.md

Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
# Contributing guidelines
2+
3+
We’d love you to help us improve this project. To help us keep this collection
4+
high quality, we request that contributions adhere to the following guidelines.
5+
6+
- **Provide a link to the application or project’s homepage**. Unless it’s
7+
extremely popular, there’s a chance the maintainers don’t know about or use
8+
the language, framework, editor, app, or project your change applies to.
9+
10+
- **Provide links to documentation** supporting the change you’re making.
11+
Current, canonical documentation mentioning the files being ignored is best.
12+
If documentation isn’t available to support your change, do the best you can
13+
to explain what the files being ignored are for.
14+
15+
- **Explain why you’re making a change**. Even if it seems self-evident, please
16+
take a sentence or two to tell us why your change or addition should happen.
17+
It’s especially helpful to articulate why this change applies to *everyone*
18+
who works with the applicable technology, rather than just you or your team.
19+
20+
- **Please consider the scope of your change**. If your change specific to a
21+
certain language or framework, then make sure the change is made to the
22+
template for that language or framework, rather than to the template for an
23+
editor, tool, or operating system.
24+
25+
- **Please only modify *one template* per pull request**. This helps keep pull
26+
requests and feedback focused on a specific project or technology.
27+
28+
In general, the more you can do to help us understand the change you’re making,
29+
the more likely we’ll be to accept your contribution quickly.
30+
31+
Please also understand that we can’t list every tool that ever existed.
32+
Our aim is to curate a collection of the *most common and helpful* templates,
33+
not to make sure we cover every project possible. If we choose not to
34+
include your language, tool, or project, it’s not because it’s not awesome.

CakePHP.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ tmp/*
44
app/tmp/*
55
app/[Cc]onfig/core.php
66
app/[Cc]onfig/database.php
7-
!empty
7+
!empty

Composer.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
composer.phar
2+
vendor/
3+
4+
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
5+
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6+
# composer.lock

Concrete5.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
config/site.php
22
files/cache/*
3-
files/tmp/*
3+
files/tmp/*

Coq.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
11
*.vo
22
*.glob
33
*.v.d
4-

Dart.gitignore

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
1-
.DS_Store
2-
packages
1+
// Don’t commit the following files and directories created by pub, Dart Editor, and dart2js
2+
packages/
33
.project
4-
pubspec.lock
4+
.buildlog
5+
*.js_
6+
*.js.deps
7+
*.js.map
8+
9+
// Include when developing application packages
10+
pubspec.lock
11+
12+
// Avoid committing generated JavaScript files
13+
*.dart.js
14+
15+
// Check for any other incovenient files generated by OS
16+
// and other tools such as Eclipse, IntelliJ, etc.

0 commit comments

Comments
 (0)