Skip to content

Commit 66f2cae

Browse files
authored
Merge pull request #1 from github/master
Merged down master github gitignore
2 parents bf70315 + d34e915 commit 66f2cae

File tree

191 files changed

+3422
-737
lines changed

Some content is hidden

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

191 files changed

+3422
-737
lines changed

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
**Reasons for making this change:**
2+
3+
_TODO_
4+
5+
**Links to documentation supporting these rule changes:**
6+
7+
_TODO_
8+
9+
If this is a new template:
10+
11+
- **Link to application or project’s homepage**: _TODO_

.travis.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
language: ruby
2+
3+
sudo: false
4+
5+
branches:
6+
only:
7+
- master
8+
9+
script:
10+
- ruby -e "puts 'Hello world!'"

Actionscript.gitignore

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,18 @@
11
# Build and Release Folders
2-
bin/
32
bin-debug/
43
bin-release/
4+
[Oo]bj/
5+
[Bb]in/
56

67
# Other files and folders
78
.settings/
89

10+
# Executables
11+
*.swf
12+
*.air
13+
*.ipa
14+
*.apk
15+
916
# Project files, i.e. `.project`, `.actionScriptProperties` and `.flexProperties`
1017
# should NOT be excluded as they contain compiler settings and other important
1118
# information for Eclipse / Flash Builder.

Android.gitignore

Lines changed: 55 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
11
# Built application files
22
*.apk
33
*.ap_
4+
*.aab
45

5-
# Files for the Dalvik VM
6+
# Files for the ART/Dalvik VM
67
*.dex
78

89
# Java class files
@@ -11,6 +12,7 @@
1112
# Generated files
1213
bin/
1314
gen/
15+
out/
1416

1517
# Gradle files
1618
.gradle/
@@ -24,3 +26,55 @@ proguard/
2426

2527
# Log Files
2628
*.log
29+
30+
# Android Studio Navigation editor temp files
31+
.navigation/
32+
33+
# Android Studio captures folder
34+
captures/
35+
36+
# IntelliJ
37+
*.iml
38+
.idea/workspace.xml
39+
.idea/tasks.xml
40+
.idea/gradle.xml
41+
.idea/assetWizardSettings.xml
42+
.idea/dictionaries
43+
.idea/libraries
44+
.idea/caches
45+
# Android Studio 3 in .gitignore file.
46+
.idea/caches/build_file_checksums.ser
47+
.idea/modules.xml
48+
49+
# Keystore files
50+
# Uncomment the following lines if you do not want to check your keystore files in.
51+
#*.jks
52+
#*.keystore
53+
54+
# External native build folder generated in Android Studio 2.2 and later
55+
.externalNativeBuild
56+
57+
# Google Services (e.g. APIs or Firebase)
58+
# google-services.json
59+
60+
# Freeline
61+
freeline.py
62+
freeline/
63+
freeline_project_description.json
64+
65+
# fastlane
66+
fastlane/report.xml
67+
fastlane/Preview.html
68+
fastlane/screenshots
69+
fastlane/test_output
70+
fastlane/readme.md
71+
72+
# Version control
73+
vcs.xml
74+
75+
# lint
76+
lint/intermediates/
77+
lint/generated/
78+
lint/outputs/
79+
lint/tmp/
80+
# lint/reports/

AppEngine.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# Google App Engine generated folder
2+
appengine-generated/

ArchLinuxPackages.gitignore

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

Autotools.gitignore

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,43 @@
11
# http://www.gnu.org/software/automake
22

33
Makefile.in
4+
/ar-lib
5+
/mdate-sh
6+
/py-compile
7+
/test-driver
8+
/ylwrap
49

510
# http://www.gnu.org/software/autoconf
611

7-
/autom4te.cache
12+
autom4te.cache
13+
/autoscan.log
14+
/autoscan-*.log
815
/aclocal.m4
916
/compile
17+
/config.guess
18+
/config.h.in
19+
/config.log
20+
/config.status
21+
/config.sub
1022
/configure
23+
/configure.scan
1124
/depcomp
1225
/install-sh
1326
/missing
1427
/stamp-h1
28+
29+
# https://www.gnu.org/software/libtool/
30+
31+
/ltmain.sh
32+
33+
# http://www.gnu.org/software/texinfo
34+
35+
/texinfo.tex
36+
37+
# http://www.gnu.org/software/m4/
38+
39+
m4/libtool.m4
40+
m4/ltoptions.m4
41+
m4/ltsugar.m4
42+
m4/ltversion.m4
43+
m4/lt~obsolete.m4

Bancha.gitignore

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

C++.gitignore

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,25 @@
1+
# Prerequisites
2+
*.d
3+
14
# Compiled Object files
25
*.slo
36
*.lo
47
*.o
58
*.obj
69

10+
# Precompiled Headers
11+
*.gch
12+
*.pch
13+
714
# Compiled Dynamic libraries
815
*.so
916
*.dylib
1017
*.dll
1118

19+
# Fortran module files
20+
*.mod
21+
*.smod
22+
1223
# Compiled Static libraries
1324
*.lai
1425
*.la

C.gitignore

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,21 @@
1+
# Prerequisites
2+
*.d
3+
14
# Object files
25
*.o
36
*.ko
47
*.obj
58
*.elf
69

10+
# Linker output
11+
*.ilk
12+
*.map
13+
*.exp
14+
15+
# Precompiled Headers
16+
*.gch
17+
*.pch
18+
719
# Libraries
820
*.lib
921
*.a
@@ -23,3 +35,18 @@
2335
*.i*86
2436
*.x86_64
2537
*.hex
38+
39+
# Debug files
40+
*.dSYM/
41+
*.su
42+
*.idb
43+
*.pdb
44+
45+
# Kernel Module Compile Results
46+
*.mod*
47+
*.cmd
48+
.tmp_versions/
49+
modules.order
50+
Module.symvers
51+
Mkfile.old
52+
dkms.conf

0 commit comments

Comments
 (0)