Skip to content

Commit 9b87ee1

Browse files
authored
Merge pull request kevinxucs#4 from dbeckwith/master
Update ignores from https://github.com/github/gitignore
2 parents a2f834a + 21c9ca0 commit 9b87ee1

91 files changed

Lines changed: 1761 additions & 354 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
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.

boilerplates/Ada.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
*.o
33

44
# Ada Library Information
5-
*.ali
5+
*.ali

boilerplates/Android.gitignore

Lines changed: 38 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
*.apk
33
*.ap_
44

5-
# Files for the Dalvik VM
5+
# Files for the ART/Dalvik VM
66
*.dex
77

88
# Java class files
@@ -11,6 +11,7 @@
1111
# Generated files
1212
bin/
1313
gen/
14+
out/
1415

1516
# Gradle files
1617
.gradle/
@@ -24,3 +25,39 @@ proguard/
2425

2526
# Log Files
2627
*.log
28+
29+
# Android Studio Navigation editor temp files
30+
.navigation/
31+
32+
# Android Studio captures folder
33+
captures/
34+
35+
# IntelliJ
36+
*.iml
37+
.idea/workspace.xml
38+
.idea/tasks.xml
39+
.idea/gradle.xml
40+
.idea/dictionaries
41+
.idea/libraries
42+
43+
# Keystore files
44+
# Uncomment the following line if you do not want to check your keystore files in.
45+
#*.jks
46+
47+
# External native build folder generated in Android Studio 2.2 and later
48+
.externalNativeBuild
49+
50+
# Google Services (e.g. APIs or Firebase)
51+
google-services.json
52+
53+
# Freeline
54+
freeline.py
55+
freeline/
56+
freeline_project_description.json
57+
58+
# fastlane
59+
fastlane/report.xml
60+
fastlane/Preview.html
61+
fastlane/screenshots
62+
fastlane/test_output
63+
fastlane/readme.md

boilerplates/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/
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
*.tar
22
*.tar.*
3+
*.jar
4+
*.exe
5+
*.msi
6+
*.zip
7+
*.tgz
38
*.log
49
*.log.*
510
*.sig
11+
612
pkg/
713
src/

boilerplates/Autotools.gitignore

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,42 @@
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

712
/autom4te.cache
13+
/autoscan.log
14+
/autoscan-*.log
815
/aclocal.m4
916
/compile
17+
/config.guess
18+
/config.h.in
19+
/config.sub
1020
/configure
21+
/configure.scan
1122
/depcomp
1223
/install-sh
1324
/missing
1425
/stamp-h1
26+
27+
# https://www.gnu.org/software/libtool/
28+
29+
/ltmain.sh
30+
31+
# http://www.gnu.org/software/texinfo
32+
33+
/texinfo.tex
34+
35+
# http://www.gnu.org/software/m4/
36+
37+
m4/libtool.m4
38+
m4/ltoptions.m4
39+
m4/ltsugar.m4
40+
m4/ltversion.m4
41+
m4/lt~obsolete.m4
42+
autom4te.cache

boilerplates/C++.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Prerequisites
2+
*.d
3+
14
# Compiled Object files
25
*.slo
36
*.lo
@@ -15,6 +18,7 @@
1518

1619
# Fortran module files
1720
*.mod
21+
*.smod
1822

1923
# Compiled Static libraries
2024
*.lai

boilerplates/C.gitignore

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
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+
715
# Precompiled Headers
816
*.gch
917
*.pch
@@ -27,3 +35,18 @@
2735
*.i*86
2836
*.x86_64
2937
*.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

boilerplates/CMake.gitignore

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
CMakeCache.txt
22
CMakeFiles
3+
CMakeScripts
4+
Testing
35
Makefile
46
cmake_install.cmake
57
install_manifest.txt
8+
compile_commands.json
9+
CTestTestfile.cmake

boilerplates/CUDA.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
*.i
2+
*.ii
3+
*.gpu
4+
*.ptx
5+
*.cubin
6+
*.fatbin

0 commit comments

Comments
 (0)