Skip to content

Commit 5e36ff8

Browse files
committed
update gitignore
1 parent 225c489 commit 5e36ff8

Some content is hidden

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

74 files changed

+672
-157
lines changed

options/gitignore/Actionscript

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
# Build and Release Folders
2-
bin/
32
bin-debug/
43
bin-release/
5-
[Oo]bj/ # FlashDevelop obj
6-
[Bb]in/ # FlashDevelop bin
4+
[Oo]bj/
5+
[Bb]in/
76

87
# Other files and folders
98
.settings/

options/gitignore/Android

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
# Built application files
22
*.apk
33
*.ap_
4+
*.aab
45

56
# Files for the ART/Dalvik VM
67
*.dex
@@ -32,16 +33,20 @@ proguard/
3233
# Android Studio captures folder
3334
captures/
3435

35-
# Intellij
36+
# IntelliJ
3637
*.iml
3738
.idea/workspace.xml
3839
.idea/tasks.xml
3940
.idea/gradle.xml
41+
.idea/assetWizardSettings.xml
4042
.idea/dictionaries
4143
.idea/libraries
44+
.idea/caches
4245

4346
# Keystore files
44-
*.jks
47+
# Uncomment the following lines if you do not want to check your keystore files in.
48+
#*.jks
49+
#*.keystore
4550

4651
# External native build folder generated in Android Studio 2.2 and later
4752
.externalNativeBuild
@@ -53,3 +58,10 @@ google-services.json
5358
freeline.py
5459
freeline/
5560
freeline_project_description.json
61+
62+
# fastlane
63+
fastlane/report.xml
64+
fastlane/Preview.html
65+
fastlane/screenshots
66+
fastlane/test_output
67+
fastlane/readme.md

options/gitignore/Archives

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,18 @@
55
*.rar
66
*.zip
77
*.gz
8+
*.tgz
89
*.bzip
910
*.bz2
1011
*.xz
1112
*.lzma
1213
*.cab
1314

14-
#packing-only formats
15+
# Packing-only formats
1516
*.iso
1617
*.tar
1718

18-
#package management formats
19+
# Package management formats
1920
*.dmg
2021
*.xpi
2122
*.gem

options/gitignore/Autotools

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,15 @@ Makefile.in
99

1010
# http://www.gnu.org/software/autoconf
1111

12-
/autom4te.cache
12+
autom4te.cache
1313
/autoscan.log
1414
/autoscan-*.log
1515
/aclocal.m4
1616
/compile
1717
/config.guess
1818
/config.h.in
19+
/config.log
20+
/config.status
1921
/config.sub
2022
/configure
2123
/configure.scan
@@ -31,3 +33,11 @@ Makefile.in
3133
# http://www.gnu.org/software/texinfo
3234

3335
/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

options/gitignore/Backup

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*.bak
2+
*.gho
3+
*.ori
4+
*.orig
5+
*.tmp

options/gitignore/C

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,7 @@
4545
# Kernel Module Compile Results
4646
*.mod*
4747
*.cmd
48+
.tmp_versions/
4849
modules.order
4950
Module.symvers
5051
Mkfile.old

options/gitignore/CodeKit

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
# General CodeKit files to ignore
22
config.codekit
3+
config.codekit3
34
/min

options/gitignore/Composer

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

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

options/gitignore/CraftCMS

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1-
# Craft Storage (cache) [http://buildwithcraft.com/help/craft-storage-gitignore]
1+
# Craft 2 Storage (https://craftcms.com/support/craft-storage-gitignore)
2+
# not necessary for Craft 3 (https://github.com/craftcms/craft/issues/26)
23
/craft/storage/*
3-
!/craft/storage/logo/*
4+
!/craft/storage/rebrand

options/gitignore/Dart

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,21 @@
1-
# See https://www.dartlang.org/tools/private-files.html
1+
# See https://www.dartlang.org/guides/libraries/private-files
22

33
# Files and directories created by pub
4+
.dart_tool/
45
.packages
5-
.pub/
66
build/
77
# If you're building an application, you may want to check-in your pubspec.lock
88
pubspec.lock
99

1010
# Directory created by dartdoc
1111
# If you don't generate documentation locally you can remove this line.
1212
doc/api/
13+
14+
# Avoid committing generated Javascript files:
15+
*.dart.js
16+
*.info.json # Produced by the --dump-info flag.
17+
*.js # When generated by dart2js. Don't specify *.js if your
18+
# project includes source files written in JavaScript.
19+
*.js_
20+
*.js.deps
21+
*.js.map

0 commit comments

Comments
 (0)