-
Notifications
You must be signed in to change notification settings - Fork 1k
/
.gitignore
4343 lines (3324 loc) · 84.9 KB
/
.gitignore
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#
# Author: Hari Sekhon
# Date: 2012-06-24 22:03:34 +0000 (Sun, 24 Jun 2012)
#
# vim: filetype=conf
#
# ============================================================================ #
# . g i t i g n o r e
# ============================================================================ #
# https://git-scm.com/docs/gitignore
# ===================================================================
# Ignores any file in any subdirectory with matching basename or path
#
# (can use **/filename but not necessary)
# ===================================================================
# Once in a while you should check which files have been ignored via:
#
# git status --ignored
#
# to check that there aren't some legit files you need to commit
# =================================================================
# To find out which line is causing a given file to be ignored, do:
#
# git check-ignore -v $filename
*#*#
*.a
*.avi
*.bak
*.bak.*
*.bin
*.bkp
*.bz2
*.class
*.dump
*.flv
*.gif
*.gpg
*.gz
*.img
*.jar
*.jks
*.jpeg
*.jpg
*.kdb
*.lock
*.log
*.lzo
*.macports-saved_*
*.mp3
*.mp4
*.mpeg
*.mpg
*.o
*.orig
*.out
*.p12
*.part
*.pyc
*.pyo
*.stderr
*.stdout
*.swo
*.swp
*.tar
*.tbz2
*.tgz
*.tmp
*.wmv
*.zip
*~
~*
.a
.activator/
.adobe
.agent.env
.aliaslists
.android/
.anyconnect
.ApacheDirectoryStudio/
.atftp_history
.atom/
.audacious/.thumbs
.audacious/accels
.audacious/log
.audacious/playlist.xspf
.awless/
# AWS Access + Secret keys are stored in here
.aws/credentials
.aws/config
.aws/token
# SSO Access + Secret Keys & STS are stored in .json files in here
.aws/cli/cache/
.aws/shell/
.bashrc_dynamichosts
.bashrc_dynamichosts.src
.bash_history
.bash_sessions
.bash_vars
.boot2docker/
.cache
.cassandra/
.cassandra/cqlshrc
.cassandra/cqlsh_history
.cassandra/nodetool_history
.cbq_history
.ccm/
.CFUserTextEncoding
# Codefresh config contains API Key
.cfconfig
.circleci/build_agent_settings.json
# Circle CI API Token stored in here
.circleci/cli.yml
.circleci/update_check.yml
.Codefresh/agent/
.compiz
.conda/
.config
# contains repo_token / COVERALLS_REPO_TOKEN
.coveralls.yml
.cpan/build/
.cpan/FTPstats.yml
.cpan/histfile
.cpan/Metadata
.cpan/sources/
.cpanm/
.cups/
.data
.dbshell
.dbus
.dcos/
.DCOPserver_*
.devcenter/.metadata/
.devcenter/DevCenter/.default/
.devcenter/DevCenter/.metadata/
.devcenter/logging/
.docker_vars
.docker/machine/
.dropbox/
.DS_Store
.dvdcss/
# contains things like auth tokens
#.envrc*
.erlang.cookie
.evolution
.fluxbox/backgrounds
.fluxbox/BEST
.fluxbox/best-styles/styles-backup
.fluxbox/DIVISION2
.fluxbox/fbrun_history
.fluxbox/lastwallpaper
.fluxbox/menu
.fluxbox/NOBG
.fluxbox/OTHERTHEMES
.fluxbox/startup.log
# contains Concourse bearer auth token
.flyrc
# contains GCP credentials for Ruby Fog library (like Boto)
.fog
.fontconfig
.fseventsd
.gaim/accels
.gaim/icons
.gaim/status.xml
.gconf
.gconfd
.gem
.gimp-*
.github_actions_runner/
.gitk
.gmvault/
.gnome
.gnome2
.gnome2_private
.gnupg/gpg-agent-info-*
.gnupg/private-keys-*
.gnuplot_history
.gpg-agent.env
.gradle
.groovy
.gstreamer-*
.gvfs
.hg
#.htoprc
.ICEauthority
.IdeaIC*
.idea
.inkscape-etc/
.ion3
.ipython/
.irb-save-history
.irb_history
# contains creds
.iredisrc
.ivy2/
.jline-jython.history
.kde
.kodos
.kube/
.ldapvi_history
.lesshst
.links2
.local
.m2/
.macports/
.macromedia
.matplotlib/
.mcop
.mcoprc
.minikube/
.minishift/
.minishift.env
.mozilla
.mtools/
.mysql_history
.nbprofiler/
.neo4j_shell_history
.npm/
.octave_hist
.openoffice.org
.openoffice.org2
.oracle_jre_usage/
.ovftool.ssldb
.Qsync/
.parallel/
# PostgreSQL password file
.pgpass
# stores credentials
.pig_history
.pki
.pentaho/
.psql_history
.pulse
.puppet/
.pwm3
.PyCharm*/
.pylint.d
.python-eggs/
.python_history
.qt
.qicon
.qnicon
# contains usernames and passwords
.rabbitmqadmin.conf
.RData
.recently-used
.recently-used.xbel
.rediscli_history
.Rhistory
.rnd
.rstudio-desktop/
.rbenv/
# 'rbenv local' $PWD version file
.ruby-version
.sbt/[[:digit:]].[[:digit:]]*/
.sbt/boot/
.sbt/preloaded/
.sbt/repositories
.sbt/*/plugins/project/target/
.sbt/*/plugins/target/
.scala_history
.sdkman/archives/
.sdkman/bin/
.sdkman/candidates/
.sdkman/etc/config
.sdkman/ext/
.sdkman/src/
.sdkman/tmp/
.sdkman/var/
# Semaphore CI - contains auth token
.sem.yaml
.serverauth.*
# $PWD/.serverless local service artifacts
.serverless/
# $HOME/.serverless installation
.serverless/bin/
.sh_history
# contains client id and secret for Shpotify
.shpotify.cfg
.Skype
.snowsql
# Snowflake password stored in plaintext in here
.snowsql/config
.spark_history
.Spotlight-*
.spumux/
.sqlite_history
.sqlline/history
.ssh/known_hosts
.ssh-agent.env
.subversion/auth
.svn
.swatch_script.*
.TemporaryItems
.terraform.d/
.terragrunt
.themes
.thumbnails
.tilda/locks/*
.tmux/
.tomboy
.tomboy.log
.Trash
.Trashes
.travis/
.vagrant
.vagrant.d/
.vboxclient-autoresize.pid
.vboxclient-clipboard.pid
.vboxclient-seamless.pid
.vim/
.viminfo
.vnc/
.wapi
.wget-hsts
.wine
.wireshark-etc/
.wireshark/
.wmii-*
.Xauthority
.xine
.xmms
.xsession-errors
.zenmap-etc/pango/pangorc
# GCP credentials
application_default_credentials.json
*keyfile.json
*credentials.json
abs-guide.pdf
android-sdks/
Applications/
AT.postflight.*
# contains OAuth token
auth.json
bin/altfirewalls
bin/altnames
bin/contrib/*
bin/desktops
bin/firewalls
bin/servers
#bitbucket/
#bitbucket/*
boxes/
Box Documents/
# contains webhook URL which should not be committed publicly
buildkite-pipeline*.json
.buildkite-pipelines/
c
chinook.*sql*
chinook.psql
Calibre Library/
cli_junkie.gif
debs/
Desktop/
Documents/
Downloads/
drive/
Dropbox/
eclipse/
enterprise
fatpacks/
fatlib/
fluxbox-themes
fluxbox/debian007.jpg
# internal repos
#git/
#git/*
# public repos - clashes with TeamCity-CI repo's .teamcity/GitHub
#github/
#github/*
gitolite-admin/
gitroot/
GNUstep
Google*Drive
go/bin/
go/src/github.com/
google-cloud-sdk/
hadoop-sources/
hgroot/
IdeaProjects/
Images
infrastructure/puppetinfrastructure/
#jython*
Library
mbox
mcollective-plugins/
Movies
Music
norev
NS-GUISettings
*OneDrive*/
ops/
original-tars
originals_tars
otherpics
Qsync/
perl5/
Pictures
Public
puppet.git/
PycharmProjects/
pytools_checks/
rpms/
setup/mac_settings/
shm/
siege.log
Sites
# golang libraries
src/github.com
src/golang.org
subversion/
svnroot/
testing/
tmp.*
# common vagrant stuff
vagrant/boxes/
vagrant/data/
vagrant/gems/
vagrant/insecure_private_key
vagrant/rgloader/
vagrant/setup_version
vagrant/tmp/
# custom stuff found in vagrant
vagrant/basho_bench/
vagrant/id_rsa.pub
vagrant/jce_policy-6
vagrant/jython
vagrant/kibana/
vagrant/lib
vagrant/mrepo
vagrant/mx4j-*
vagrant/mysql-connector-*
vagrant/thrift-*
venv/
VirtualBox VMs/
VirtualBoxShared
visualvm*
windows/bin2
wordlists/*.lower
wordlists/hosts.large
wordlists/hosts.medium
wordlists/hosts.small
wordlists/pw.medium
wordlists/pw.small
wordlists/pw.tiny
wordlists/snmp
wordlists/ultimate.*
wordlists/users.large
wordlists/users.medium
wordlists/users.small
wordlists/users.tiny
wordlists/users.weighted
*.doc
*.docx
*.xls
*.xlsx
*.log
*.msg
*.pages
*.rtf
*.wpd
*.wps
# ============================================================================ #
#
# Regenerate all sections below in to a single arg for API call via:
#
# grep '[C]reated by https://' .gitignore | sed 's,.*/,,' | tr ',' '\n' | sort -u | tr '\n' ',' | sed 's/,$//' | xargs echo gitignore.io_api.sh
#
# eg.
#
# gitignore.io_api.sh ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh >> .gitignore
#
# Find new or missing tags you aren't using yet:
#
# grep '[C]reated by https://' .gitignore | sed 's,.*/,,' | tr ',' '\n' | sort -u | tr '\n' ',' | sed 's/,$//' | gitignore.io_api.sh missing
#
# ============================================================================ #
# Created by https://www.toptal.com/developers/gitignore/api/ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh
# Edit at https://www.toptal.com/developers/gitignore?templates=ansible,apachehadoop,appcode,appengine,archive,archives,archlinuxpackages,audio,autotools,backup,basic,bittorrent,c,c++,certificates,chefcookbook,clojure,cloud9,cmake,code,code-java,codeblocks,compressed,compressedarchive,compression,data,database,datarecovery,diff,direnv,diskimage,docfx,docpress,docz,dotenv,dotfilessh,dotsettings,dropbox,eclipse,emacs,erlang,executable,firebase,flask,git,gitbook,go,gpg,gradle,grails,groovy,grunt,haskell,helm,homebrew,hugo,images,intellij,intellij+all,intellij+iml,java,java-web,jenv,jetbrains,jetbrains+all,jetbrains+iml,jmeter,julia,jupyternotebooks,kotlin,lamp,latex,less,linux,lua,macos,matlab,maven,mercurial,microsoftoffice,node,octave,osx,packer,patch,perl,perl6,phpunit,powershell,puppet,putty,pycharm,pycharm+all,pycharm+iml,pydev,python,r,rails,react,reactnative,redis,root,ruby,rust,sbt,scala,serverless,sonar,sonarqube,spark,splunk,spreadsheet,ssh,sublimetext,svn,terraform,terragrunt,tortoisegit,vagrant,venv,virtualenv,visualstudio,visualstudiocode,vs,vscode,vue,vuejs,waf,windows,xcode,xcodeinjection,zsh
### Ansible ###
*.retry
### ApacheHadoop ###
*.iml
*.ipr
*.iws
*.orig
*.rej
.idea
.svn
.classpath
.project
.settings
target
hadoop-common-project/hadoop-kms/downloads/
hadoop-hdfs-project/hadoop-hdfs/downloads
hadoop-hdfs-project/hadoop-hdfs-httpfs/downloads
hadoop-common-project/hadoop-common/src/test/resources/contract-test-options.xml
hadoop-tools/hadoop-openstack/src/test/resources/contract-test-options.xml
### AppCode ###
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider
# Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839
# User-specific stuff
.idea/**/workspace.xml
.idea/**/tasks.xml
.idea/**/usage.statistics.xml
.idea/**/dictionaries
.idea/**/shelf
# Generated files
.idea/**/contentModel.xml
# Sensitive or high-churn files
.idea/**/dataSources/
.idea/**/dataSources.ids
.idea/**/dataSources.local.xml
.idea/**/sqlDataSources.xml
.idea/**/dynamic.xml
.idea/**/uiDesigner.xml
.idea/**/dbnavigator.xml
# Gradle
.idea/**/gradle.xml
.idea/**/libraries
# Gradle and Maven with auto-import
# When using Gradle or Maven with auto-import, you should exclude module files,
# since they will be recreated, and may cause churn. Uncomment if using
# auto-import.
# .idea/artifacts
# .idea/compiler.xml
# .idea/jarRepositories.xml
# .idea/modules.xml
# .idea/*.iml
# .idea/modules
# *.iml
# *.ipr
# CMake
cmake-build-*/
# Mongo Explorer plugin
.idea/**/mongoSettings.xml
# File-based project format
# IntelliJ
out/
# mpeltonen/sbt-idea plugin
.idea_modules/
# JIRA plugin
atlassian-ide-plugin.xml
# Cursive Clojure plugin
.idea/replstate.xml
# Crashlytics plugin (for Android Studio and IntelliJ)
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties
# Editor-based Rest Client
.idea/httpRequests
# Android studio 3.1+ serialized cache file
.idea/caches/build_file_checksums.ser
### AppCode Patch ###
# Comment Reason: https://github.com/joeblau/gitignore.io/issues/186#issuecomment-215987721
# *.iml
# modules.xml
# .idea/misc.xml
# *.ipr
# Sonarlint plugin
# https://plugins.jetbrains.com/plugin/7973-sonarlint
.idea/**/sonarlint/
# SonarQube Plugin
# https://plugins.jetbrains.com/plugin/7238-sonarqube-community-plugin
.idea/**/sonarIssues.xml
# Markdown Navigator plugin
# https://plugins.jetbrains.com/plugin/7896-markdown-navigator-enhanced
.idea/**/markdown-navigator.xml
.idea/**/markdown-navigator-enh.xml
.idea/**/markdown-navigator/
# Cache file creation bug
# See https://youtrack.jetbrains.com/issue/JBR-2257
.idea/$CACHE_FILE$
# CodeStream plugin
# https://plugins.jetbrains.com/plugin/12206-codestream
.idea/codestream.xml
### AppEngine ###
# Google App Engine generated folder
appengine-generated/
### Archive ###
### Mostly from https://en.wikipedia.org/wiki/List_of_archive_formats
## Archiving only
# The traditional archive format on Unix-like systems, now used mainly for the creation of static libraries.
*.a
*.ar
# RPM files consist of metadata concatenated with (usually) a cpio archive. Newer RPM systems also support other archives, as cpio is becoming obsolete. cpio is also used with initramfs.
*.cpio
# A self-extracting archive that uses the Bourne shell (sh).
*.shar
# A system for storing multiple files. LBR archives typically contained files processed by SQ, or the archive itself was compressed with SQ. LBR archives that were compressed with SQ ended with the extension .LQR
*.LBR
# An archive format originally used mainly for archiving and distribution of the exact, nearly-exact, or custom-modified contents of an optical storage medium such as a CD-ROM or DVD-ROM. However, it can be used to archive the contents of other storage media, selected partitions, folders, and/or files. The resulting archive is typically optimized for convenient rendering to (re-)writable CD or DVD media.
*.iso
# A library format used primarily on the Commodore 64 and 128 lines of computers. This bears no resemblance to the DOS LBR format. While library files were quick to implement (a number of programs exist to work with them) they are crippled in that they cannot grow with use: once a file has been created it cannot be amended (files added, changed or deleted) without recreating the entire file.
*.lbr
# An archive format used by Mozilla for storing binary diffs. Used in conjunction with bzip2.
*.mar
# A common archive format used on Unix-like systems. Generally used in conjunction with compressors such as gzip, bzip2, compress or xz to create .tar.gz, .tar.bz2, .tar.Z or tar.xz files.
*.tar
# Package managers
# Red Hat Package Manager
*.rpm
# Debian package
*.deb
# MicroSoft Installer
*.msi
*.msm
*.msp
# Mozilla package installer
*.xpi
# Ruby Package
*.gem
### Archives ###
# It's better to unpack these files and commit the raw source because
# git has its own built in compression methods.
*.7z
*.jar
*.rar
*.zip
*.gz
*.gzip
*.tgz
*.bzip
*.bzip2
*.bz2
*.xz
*.lzma
*.cab
*.xar
# Packing-only formats
# Package management formats
*.dmg
*.egg
*.txz
### ArchLinuxPackages ###
*.tar.*
*.exe
*.log
*.log.*
*.sig
pkg/
# XXX: might conflict with standard java golang src/ directory structure
#src/
### Audio ###
*.aif
*.iff
*.m3u
*.m4a
*.mid
*.mp3
*.mpa
*.ra
*.wav
*.wma
*.ogg
*.flac
### Autotools ###
# http://www.gnu.org/software/automake
# XXX: I track a master Makefile.in in DevOps-Bash-tools to inherit in other projects
#Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap
.deps/
# http://www.gnu.org/software/autoconf
autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4
/compile
/config.guess
/config.h.in
/config.log
/config.status
/config.sub
/configure
/configure.scan
/depcomp
/install-sh
/missing
/stamp-h1
# https://www.gnu.org/software/libtool/
/ltmain.sh
# http://www.gnu.org/software/texinfo
/texinfo.tex
# http://www.gnu.org/software/m4/
m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4
# Generated Makefile
# (meta build system like autotools,
# can automatically generate from config.status script
# (which is called by configure script))
#
# XXX: always want to commit Makefiles
#Makefile
### Autotools Patch ###
### Backup ###
*.bak
*.gho
*.ori
*.tmp
### Basic ###
# Apples Build
*.build
*.apples
# Initialized files
#*.ini # used by Ansible for inventory.ini
*.basic
### BitTorrent ###
*.torrent
### C ###
# Prerequisites
# XXX: clashes with .bash.d/* and .conf.d/* type stuff
#*.d
# Object files
*.o
*.ko
*.obj
*.elf
# Linker output
*.ilk
*.map
*.exp
# Precompiled Headers
*.gch
*.pch
# Libraries
*.lib
*.la
*.lo
# Shared objects (inc. Windows DLLs)
*.dll
*.so
*.so.*
*.dylib
# Executables
*.out
*.app
*.i*86
*.x86_64
*.hex
# Debug files
*.dSYM/
*.su
*.idb
*.pdb
# Kernel Module Compile Results
# XXX: *.mod* changed to avoid clashing with Golang's new module system go.mod
*.mod?*
.tmp_versions/
modules.order
Module.symvers
Mkfile.old
dkms.conf
### Zsh ###
# Zsh compiled script + zrecompile backup
*.zwc
*.zwc.old
# Zsh completion-optimization dumpfile
*zcompdump*
# Zsh zcalc history
.zcalc_history
# A popular plugin manager's files
._zplugin
.zplugin_lstupd
# zdharma/zshelldoc tool's files
zsdoc/data
# robbyrussell/oh-my-zsh/plugins/per-directory-history plugin's files
# (when set-up to store the history in the local directory)
.directory_history
# MichaelAquilina/zsh-autoswitch-virtualenv plugin's files
# (for Zsh plugins using Python)
.venv
# Zunit tests' output
/tests/_output/*
!/tests/_output/.gitkeep
### C++ ###
# Prerequisites
# Compiled Object files
*.slo
# Precompiled Headers
# Compiled Dynamic libraries
# Fortran module files
# XXX: would conflict with Golang's go.mod
#*.mod
*.smod
# Compiled Static libraries
*.lai
# Executables
### certificates ###
*.pem
*.key
*.crt
*.cer
*.priv
### Cloud9 ###
# Cloud9 IDE - http://c9.io
.c9revisions
.c9
### ChefCookbook ###
.vagrant
/cookbooks
# Bundler
# XXX: would prevent tracking ~/bin scripts
#bin/*
.bundle/*
.kitchen/
.kitchen.local.yml
.kitchen.*.local.yml
kitchen.local.yml
kitchen.*.local.yml
### Code ###
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
!.vscode/launch.json
!.vscode/extensions.json
*.code-workspace
### Code-Java ###
# Language Support for Java(TM) by Red Hat extension for Visual Studio Code - https://marketplace.visualstudio.com/items?itemName=redhat.java
factoryConfiguration.json
### Clojure ###
# XXX: always want to commit pom.xml
#pom.xml
pom.xml.asc
*.class
# XXX: would break lib submodule updates
#/lib/
/classes/
/target/
/checkouts/
.lein-deps-sum
.lein-repl-history
.lein-plugins/
.lein-failures
.nrepl-port
.cpcache/
### Compressed ###
*.pkg
*.sit
*.sitx
*.zipx
### CompressedArchive ###
## Archiving and compression
# Open source file format. Used by 7-Zip.
# Mac OS X, restoration on different platforms is possible although not immediate Yes Based on 7z. Preserves Spotlight metadata, resource forks, owner/group information, dates and other data which would be otherwise lost with compression.
*.s7z
# Old archive versions only Proprietary format
*.ace
# A format that compresses and doubly encrypt the data (AES256 and CAS256) avoiding brute force attacks, also hide files in an AFA file. It has two ways to safeguard data integrity and subsequent repair of the file if has an error (repair with AstroA2P (online) or Astrotite (offline)).
*.afa
# A mainly Korean format designed for very large archives.
*.alz
# Android application package (variant of JAR file format).
*.apk
# ??
*.arc
# Originally DOS, now multiple
*.arj
# Open archive format, used by B1 Free Archiver (http://dev.b1.org/standard/archive-format.html)
*.b1
# Binary Archive with external header
*.ba
# Proprietary format from the ZipTV Compression Components
*.bh
# The Microsoft Windows native archive format, which is also used by many commercial installers such as InstallShield and WISE.
# Originally DOS, now DOS and Windows Created by Yaakov Gringeler; released last in 2003 (Compressia 1.0.0.1 beta), now apparently defunct. Free trial of 30 days lets user create and extract archives; after that it is possible to extract, but not to create.
*.car
# Open source file format.
*.cfs
# Compact Pro archive, a common archiver used on Mac platforms until about Mac OS 7.5.x. Competed with StuffIt; now obsolete.
*.cpt
# Windows, Unix-like, Mac OS X Open source file format. Files are compressed individually with either gzip, bzip2 or lzo.
*.dar
# DiskDoubler Mac OS obsolete
*.dd
# ??
*.dgc
# Apple Disk Image upports "Internet-enabled" disk images, which, once downloaded, are automatically decompressed, mounted, have the contents extracted, and thrown away. Currently, Safari is the only browser that supports this form of extraction; however, the images can be manually extracted as well. This format can also be password-protected or encrypted with 128-bit or 256-bit AES encryption.
# Enterprise Java Archive archive
*.ear
# ETSoft compressed archive
# The predecessor of DGCA.
*.gca
# Originally DOS Yes, but may be covered by patents DOS era format; uses arithmetic/Markov coding
*.ha
# MS Windows HKI
*.hki
# Produced by ICEOWS program. Excels at text file compression.
*.ice