Skip to content

Commit bfabdf1

Browse files
committed
Merge branch 'master' into reledmac_endnote
2 parents 09a2358 + a25a019 commit bfabdf1

Some content is hidden

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

52 files changed

+392
-77
lines changed

Android.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,9 @@ proguard/
2424

2525
# Log Files
2626
*.log
27+
28+
# Android Studio Navigation editor temp files
29+
.navigation/
30+
31+
# Android Studio captures folder
32+
captures/

Autotools.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,13 @@ Makefile.in
55
# http://www.gnu.org/software/autoconf
66

77
/autom4te.cache
8+
/autoscan.log
9+
/autoscan-*.log
810
/aclocal.m4
911
/compile
12+
/config.h.in
1013
/configure
14+
/configure.scan
1115
/depcomp
1216
/install-sh
1317
/missing

Composer.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
composer.phar
2-
vendor/
2+
/vendor/
33

44
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
55
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file

D.gitignore

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
# Compiled Object files
2+
*.o
3+
*.obj
4+
5+
# Compiled Dynamic libraries
6+
*.so
7+
*.dylib
8+
*.dll
9+
10+
# Compiled Static libraries
11+
*.a
12+
*.lib
13+
14+
# Executables
15+
*.exe
16+
17+
# DUB
18+
.dub
19+
docs.json
20+
__dummy.html

Dart.gitignore

Lines changed: 18 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,27 @@
1-
# Don’t commit the following directories created by pub.
1+
# See https://www.dartlang.org/tools/private-files.html
2+
3+
# Files and directories created by pub
24
.buildlog
5+
.packages
6+
.project
37
.pub/
48
build/
5-
packages
9+
**/packages/
610

7-
# Or the files created by dart2js.
11+
# Files created by dart2js
12+
# (Most Dart developers will use pub build to compile Dart, use/modify these
13+
# rules if you intend to use dart2js directly
14+
# Convention is to use extension '.dart.js' for Dart compiled to Javascript to
15+
# differentiate from explicit Javascript files)
816
*.dart.js
9-
*.js_
17+
*.part.js
1018
*.js.deps
1119
*.js.map
20+
*.info.json
21+
22+
# Directory created by dartdoc
23+
doc/api/
1224

13-
# Include when developing application packages.
25+
# Don't commit pubspec lock file
26+
# (Library packages only! Remove pattern if developing an application package)
1427
pubspec.lock

Delphi.gitignore

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@
2020
# Deployment Manager configuration file for your project. Added in Delphi XE2.
2121
# Uncomment this if it is not mobile development and you do not use remote debug feature.
2222
#*.deployproj
23+
#
24+
# C++ object files produced when C/C++ Output file generation is configured.
25+
# Uncomment this if you are not using external objects (zlib library for example).
26+
#*.obj
2327
#
2428

2529
# Delphi compiler-generated binaries (safe to delete)
@@ -37,9 +41,13 @@
3741
*.tds
3842
*.dcu
3943
*.lib
44+
*.a
45+
*.o
46+
*.ocx
4047

4148
# Delphi autogenerated files (duplicated info)
4249
*.cfg
50+
*.hpp
4351
*Resource.rc
4452

4553
# Delphi local files (user-specific info)
@@ -53,5 +61,5 @@
5361
__history/
5462
*.~*
5563

56-
# Castalia statistics file
64+
# Castalia statistics file (since XE7 Castalia is distributed with Delphi)
5765
*.stat

Drupal.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ robots.txt
1515
/MAINTAINERS.txt
1616
/UPGRADE.txt
1717
/README.txt
18-
sites/all/README.txt
18+
sites/README.txt
1919
sites/all/modules/README.txt
2020
sites/all/themes/README.txt
2121

Eagle.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@
1111
# comment the following line if you want to have your project file included.
1212
eagle.epf
1313

14+
# Autorouter files
15+
*.pro
16+
*.job
17+
1418
# CAM files
1519
*.$$$
1620
*.cmp

Elixir.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
/_build
2+
/cover
23
/deps
34
erl_crash.dump
45
*.ez

Elm.gitignore

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# elm-package generated files
2+
elm-package.json
3+
elm-stuff/
4+
# elm-repl generated files
5+
repl-temp-*

0 commit comments

Comments
 (0)