mirror of
https://github.com/github/gitignore
synced 2024-12-12 05:06:25 +01:00
Merged
This commit is contained in:
commit
cc0d57e9e3
5
DM.gitignore
Normal file
5
DM.gitignore
Normal file
@ -0,0 +1,5 @@
|
|||||||
|
*.dmb
|
||||||
|
*.rsc
|
||||||
|
*.int
|
||||||
|
*.lk
|
||||||
|
*.zip
|
@ -1,14 +1,52 @@
|
|||||||
*.dcu
|
# Uncomment these types if you want even more clean repository. But be careful.
|
||||||
*.~*
|
# It can make harm to an existing project source. Read explanations below.
|
||||||
*.local
|
#
|
||||||
*.identcache
|
# Resource files are binaries containing manifest, project icon and version info.
|
||||||
__history
|
# They can not be viewed as text or compared by diff-tools. Consider replacing them with .rc files.
|
||||||
*.drc
|
#*.res
|
||||||
*.map
|
#
|
||||||
|
# Type library file (binary). In old Delphi versions it should be stored.
|
||||||
|
# Since Delphi 2009 it is produced from .ridl file and can safely be ignored.
|
||||||
|
#*.tlb
|
||||||
|
#
|
||||||
|
# Diagram Portfolio file. Used by the diagram editor up to Delphi 7.
|
||||||
|
# Uncomment this if you are not using diagrams or use newer Delphi version.
|
||||||
|
#*.ddp
|
||||||
|
#
|
||||||
|
# Visual LiveBindings file. Added in Delphi XE2.
|
||||||
|
# Uncomment this if you are not using LiveBindings Designer.
|
||||||
|
#*.vlb
|
||||||
|
#
|
||||||
|
# Deployment Manager configuration file for your project. Added in Delphi XE2.
|
||||||
|
# Uncomment this if it is not mobile development and you do not use remote debug feature.
|
||||||
|
#*.deployproj
|
||||||
|
#
|
||||||
|
|
||||||
|
# Delphi compiler-generated binaries (safe to delete)
|
||||||
*.exe
|
*.exe
|
||||||
*.dll
|
*.dll
|
||||||
*.bpl
|
*.bpl
|
||||||
|
*.bpi
|
||||||
*.dcp
|
*.dcp
|
||||||
*.so
|
*.so
|
||||||
*.apk
|
*.apk
|
||||||
bin/*
|
*.drc
|
||||||
|
*.map
|
||||||
|
*.dres
|
||||||
|
*.rsm
|
||||||
|
*.tds
|
||||||
|
|
||||||
|
# Delphi autogenerated files (duplicated info)
|
||||||
|
*.cfg
|
||||||
|
*Resource.rc
|
||||||
|
|
||||||
|
# Delphi local files (user-specific info)
|
||||||
|
*.local
|
||||||
|
*.identcache
|
||||||
|
*.projdata
|
||||||
|
*.tvsconfig
|
||||||
|
*.dsk
|
||||||
|
|
||||||
|
# Delphi history and backups
|
||||||
|
__history/
|
||||||
|
*.~*
|
||||||
|
@ -21,3 +21,9 @@ out/
|
|||||||
|
|
||||||
# generated by mpeltonen/sbt-idea plugin
|
# generated by mpeltonen/sbt-idea plugin
|
||||||
.idea_modules/
|
.idea_modules/
|
||||||
|
|
||||||
|
# generated by JIRA plugin
|
||||||
|
atlassian-ide-plugin.xml
|
||||||
|
|
||||||
|
# generated by Crashlytics plugin (for Android Studio and Intellij)
|
||||||
|
com_crashlytics_export_strings.xml
|
||||||
|
@ -1,17 +1,7 @@
|
|||||||
# .gitignore for Grails 1.2 and 1.3
|
# .gitignore for Grails 1.2, 1.3 and 2.x
|
||||||
|
|
||||||
# web application files
|
# web application files
|
||||||
/web-app/WEB-INF
|
/web-app/WEB-INF/classes
|
||||||
|
|
||||||
# IDE support files
|
|
||||||
/.classpath
|
|
||||||
/.launch
|
|
||||||
/.project
|
|
||||||
/.settings
|
|
||||||
/*.launch
|
|
||||||
/*.tmproj
|
|
||||||
/ivy*
|
|
||||||
/eclipse
|
|
||||||
|
|
||||||
# default HSQL database files for production mode
|
# default HSQL database files for production mode
|
||||||
/prodDb.*
|
/prodDb.*
|
||||||
|
@ -7,3 +7,6 @@
|
|||||||
*.jar
|
*.jar
|
||||||
*.war
|
*.war
|
||||||
*.ear
|
*.ear
|
||||||
|
|
||||||
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
||||||
|
hs_err_pid*
|
||||||
|
2
LICENSE
2
LICENSE
@ -1,4 +1,4 @@
|
|||||||
Copyright (c) 2013 GitHub, Inc.
|
Copyright (c) 2014 GitHub, Inc.
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a
|
Permission is hereby granted, free of charge, to any person obtaining a
|
||||||
copy of this software and associated documentation files (the "Software"),
|
copy of this software and associated documentation files (the "Software"),
|
||||||
|
@ -6,6 +6,8 @@ __pycache__/
|
|||||||
*.so
|
*.so
|
||||||
|
|
||||||
# Distribution / packaging
|
# Distribution / packaging
|
||||||
|
.Python
|
||||||
|
env/
|
||||||
bin/
|
bin/
|
||||||
build/
|
build/
|
||||||
develop-eggs/
|
develop-eggs/
|
||||||
|
@ -25,6 +25,7 @@
|
|||||||
## Build tool auxiliary files:
|
## Build tool auxiliary files:
|
||||||
*.fdb_latexmk
|
*.fdb_latexmk
|
||||||
*.synctex.gz
|
*.synctex.gz
|
||||||
|
*.synctex.gz(busy)
|
||||||
*.pdfsync
|
*.pdfsync
|
||||||
|
|
||||||
## Auxiliary and intermediate files from other packages:
|
## Auxiliary and intermediate files from other packages:
|
||||||
|
9
Umbraco.gitignore
Normal file
9
Umbraco.gitignore
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
# Ignore Umbraco folders (Generated folders created by Umbraco)
|
||||||
|
ClientDependency/
|
||||||
|
TEMP/
|
||||||
|
Logs/
|
||||||
|
Cached/
|
||||||
|
ExamineIndexes/
|
||||||
|
|
||||||
|
# Ignore Umbraco content cache file
|
||||||
|
umbraco.config
|
@ -10,3 +10,4 @@
|
|||||||
/*.user
|
/*.user
|
||||||
/*.userprefs
|
/*.userprefs
|
||||||
/*.pidb
|
/*.pidb
|
||||||
|
/*.booproj
|
||||||
|
@ -24,6 +24,11 @@ bld/
|
|||||||
*.VisualState.xml
|
*.VisualState.xml
|
||||||
TestResult.xml
|
TestResult.xml
|
||||||
|
|
||||||
|
# Build Results of an ATL Project
|
||||||
|
[Dd]ebugPS/
|
||||||
|
[Rr]eleasePS/
|
||||||
|
dlldata.c
|
||||||
|
|
||||||
*_i.c
|
*_i.c
|
||||||
*_p.c
|
*_p.c
|
||||||
*_i.h
|
*_i.h
|
||||||
@ -158,8 +163,8 @@ UpgradeLog*.XML
|
|||||||
UpgradeLog*.htm
|
UpgradeLog*.htm
|
||||||
|
|
||||||
# SQL Server files
|
# SQL Server files
|
||||||
App_Data/*.mdf
|
*.mdf
|
||||||
App_Data/*.ldf
|
*.ldf
|
||||||
|
|
||||||
# Business Intelligence projects
|
# Business Intelligence projects
|
||||||
*.rdl.data
|
*.rdl.data
|
||||||
|
Loading…
Reference in New Issue
Block a user