Skip to content

Commit 4211046

Browse files
committed
Merge upstream changes
2 parents b75ce44 + 495ce0e commit 4211046

62 files changed

Lines changed: 544 additions & 130 deletions

Some content is hidden

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

Android.gitignore

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ gen/
1515
# Gradle files
1616
.gradle/
1717
build/
18-
/*/build/
1918

2019
# Local configuration file (sdk path, etc)
2120
local.properties
@@ -25,3 +24,9 @@ proguard/
2524

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

ArchLinuxPackages.gitignore

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
*.tar
22
*.tar.*
3+
*.jar
4+
*.exe
5+
*.msi
36
*.zip
47
*.tgz
58
*.log
69
*.log.*
710
*.sig
811

9-
# AUR metadata
10-
.AURINFO
11-
.SRCINFO
12-
1312
pkg/
1413
src/

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

CMake.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
CMakeCache.txt
22
CMakeFiles
3+
CMakeScripts
34
Makefile
45
cmake_install.cmake
56
install_manifest.txt

CodeIgniter.gitignore

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
*/config/development
22
*/logs/log-*.php
3-
*/logs/!index.html
3+
!*/logs/index.html
44
*/cache/*
5-
*/cache/!index.html
6-
*/cache/!.htaccess
5+
!*/cache/index.html
6+
!*/cache/.htaccess

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

0 commit comments

Comments
 (0)