Skip to content

Commit 1f4bf1f

Browse files
committed
merging upstream changes
2 parents cccee44 + c67cfaf commit 1f4bf1f

Some content is hidden

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

68 files changed

+494
-340
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: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,12 @@ local.properties
1818
# Eclipse project files
1919
.classpath
2020
.project
21+
22+
# Proguard folder generated by Eclipse
23+
proguard/
24+
25+
# Intellij project files
26+
*.iml
27+
*.ipr
28+
*.iws
29+
.idea/

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

Concrete5.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
config/site.php
22
files/cache/*
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: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
// Don’t commit the following files and directories created by pub, Dart Editor, and dart2js
2+
packages/
3+
.project
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.

Delphi.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@ __history
77
*.map
88
*.exe
99
*.dll
10-
bin/*
10+
bin/*

0 commit comments

Comments
 (0)