1
0
Fork 0
mirror of https://github.com/github/gitignore synced 2025-07-04 20:38:31 +02:00

Merge remote-tracking branch 'upstream/master' into patch-1

This commit is contained in:
Michiel Sikma 2016-01-21 10:36:01 +01:00
commit 29bd7031a7
83 changed files with 798 additions and 125 deletions

View file

@ -1,6 +1,5 @@
*.pydevproject
.metadata
.gradle
bin/
tmp/
*.tmp
@ -11,16 +10,28 @@ local.properties
.settings/
.loadpath
# Eclipse Core
.project
# External tool builders
.externalToolBuilders/
# Locally stored "Eclipse launch configurations"
*.launch
# CDT-specific
# PyDev specific (Python IDE for Eclipse)
*.pydevproject
# CDT-specific (C/C++ Development Tooling)
.cproject
# PDT-specific
# JDT-specific (Eclipse Java Development Tools)
.classpath
# Java annotation processor (APT)
.factorypath
# PDT-specific (PHP Development Tools)
.buildpath
# sbteclipse plugin
@ -28,3 +39,6 @@ local.properties
# TeXlipse plugin
.texlipse
# STS (Spring Tool Suite)
.springBeans

View file

@ -1,2 +1,2 @@
# The compilation directoy
# The compilation directory
EIFGENs

View file

@ -1,3 +1,4 @@
# Ensime specific
.ensime
.ensime_cache/
.ensime_lucene/

2
Global/GPG.gitignore Normal file
View file

@ -0,0 +1,2 @@
secring.*

View file

@ -1,4 +1,13 @@
# default application storage directory used by the IDE Performance Cache feature
.data/
# used for ADF styles caching
temp/
# default output directories
classes/
deploy/
javadoc/
# lock file, a part of Oracle Credential Store Framework
cwallet.sso.lck

View file

@ -1,4 +1,4 @@
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio and Webstorm
*.iml
@ -10,6 +10,7 @@
# .idea/workspace.xml
# .idea/tasks.xml
# .idea/dictionaries
# .idea/shelf
# Sensitive or high-churn files:
# .idea/dataSources.ids
@ -32,7 +33,7 @@
## Plugin-specific files:
# IntelliJ
out/
/out/
# mpeltonen/sbt-idea plugin
.idea_modules/
@ -44,3 +45,4 @@ atlassian-ide-plugin.xml
com_crashlytics_export_strings.xml
crashlytics.properties
crashlytics-build.properties
fabric.properties

View file

@ -1,15 +1,30 @@
#ignore backup files
backup/
#ignore files generated by the compiler
lib/
# Lazarus compiler-generated binaries (safe to delete)
*.exe
*.dll
*.so
*.dylib
*.lrs
*.res
*.compiled
*.dbg
*.ppu
*.o
*.or
*.ppu
*.a
#ignore debug information files
*.dbg
# Lazarus autogenerated files (duplicated info)
*.rst
*.rsj
*.lrt
#exclude executable output in windows
*.exe
# Lazarus local files (user-specific info)
*.lps
# Lazarus backups and unit output folders.
# These can be changed by user in Lazarus/project options.
backup/
*.bak
lib/
# Application bundle for Mac OS
*.app/

View file

@ -1,4 +1,10 @@
*~
# temporary files which can be created if a process still has a handle open of a deleted file
.fuse_hidden*
# KDE directory preferences
.directory
# Linux trash folder which might appear on any partition or disk
.Trash-*

View file

@ -1,3 +1,6 @@
/.hg/*
*/.hg/*
.hg/
.hgignore
.hgsigs
.hgsub
.hgsubstate
.hgtags

View file

@ -8,3 +8,6 @@
# Excel Backup File
*.xlk
# PowerPoint temporary
~$*.ppt*

View file

@ -4,4 +4,4 @@ nbbuild/
dist/
nbdist/
nbactions.xml
nb-configuration.xml
.nb-gradle/

View file

@ -8,9 +8,13 @@ Icon
# Thumbnails
._*
# Files that might appear on external disk
# Files that might appear in the root of a volume
.DocumentRevisions-V100
.fseventsd
.Spotlight-V100
.TemporaryItems
.Trashes
.VolumeIcon.icns
# Directories potentially created on remote AFP share
.AppleDB

1
Global/Otto.gitignore Normal file
View file

@ -0,0 +1 @@
.otto/

View file

@ -4,7 +4,7 @@ This directory contains globally useful gitignores,
e.g. OS-specific and editor specific.
For more on global gitignores:
<http://help.github.com/git-ignore/>
<https://help.github.com/articles/ignoring-files/#create-a-global-gitignore>
And a good blog post about 'em:
<http://augustl.com/blog/2009/global_gitignores>

3
Global/Redis.gitignore Normal file
View file

@ -0,0 +1,3 @@
# Ignore redis binary dump (dump.rdb) files
*.rdb

View file

@ -0,0 +1,36 @@
# Waveform formats
*.vcd
*.vpd
*.evcd
*.fsdb
# Default name of the simulation executable. A different name can be
# specified with this switch (the associated daidir database name is
# also taken from here): -o <path>/<filename>
simv
# Generated for Verilog and VHDL top configs
simv.daidir/
simv.db.dir/
# Infrastructure necessary to co-simulate SystemC models with
# Verilog/VHDL models. An alternate directory may be specified with this
# switch: -Mdir=<directory_path>
csrc/
# Log file - the following switch allows to specify the file that will be
# used to write all messages from simulation: -l <filename>
*.log
# Coverage results (generated with urg) and database location. The
# following switch can also be used: urg -dir <coverage_directory>.vdb
simv.vdb/
urgReport/
# DVE and UCLI related files.
DVEfiles/
ucli.key
# When the design is elaborated for DirectC, the following file is created
# with declarations for C/C++ functions.
vc_hdrs.h

View file

@ -1,7 +1,9 @@
# Ignore tags created by etags, ctags, gtags (GNU global) and cscope
TAGS
.TAGS
!TAGS/
tags
.tags
!tags/
gtags.files
GTAGS

View file

@ -4,6 +4,9 @@
[Bb]in
[Ii]nclude
[Ll]ib
[Ll]ib64
[Ll]ocal
[Ss]cripts
pyvenv.cfg
.venv
pip-selfcheck.json

View file

@ -0,0 +1,2 @@
.vscode

View file

@ -1,4 +1,12 @@
# Xcode
#
# gitignore contributors: remember to update Global/Xcode.gitignore, Objective-C.gitignore & Swift.gitignore
## Build generated
build/
DerivedData
## Various settings
*.pbxuser
!default.pbxuser
*.mode1v3
@ -8,7 +16,8 @@ build/
*.perspectivev3
!default.perspectivev3
xcuserdata
## Other
*.xccheckout
*.moved-aside
DerivedData
*.xcuserstate

View file

@ -42,6 +42,16 @@
*_usage.xml
*_xst.xrpt
# iMPACT generated files
_impactbatch.log
impact.xsl
impact_impact.xwbt
ise_impact.cmd
webtalk_impact.xml
# Core Generator generated files
xaw2verilog.log
# project-wide generated files
*.gise
par_usage_statistics.html