Jim Hester [Fri, 2 Oct 2015 12:50:47 +0000 (08:50 -0400)]
Ignore `.RData` files
N.B. this ignores only the exact file `.RData` generated by default from `save.image()` and `quit()`. It is _not_ what is referred to in https://github.com/github/gitignore/commit/1f8466164330277fc8c9126ded3cc207ff3baf91 and http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Data-in-packages, which refers only to files with an `*.RData` _extension_.
Martin Nowak [Sun, 27 Sep 2015 16:45:12 +0000 (18:45 +0200)]
gitignore file for D
Ignore the usual obj/library/executable files.
See https://github.com/D-Programming-Language/dub/blob/89c8dea75ae9cfde1ae6cfb7d9fe03dbccdbbdf8/source/dub/init.d#L168 for dub's default .gitignore.
Jonathan Nagy [Tue, 1 Sep 2015 09:09:12 +0000 (19:09 +1000)]
Remove entries for Intellij IDEA
The *.iml file is IDE specific. It is generated by Intellij IDEA to store project related metadata. It is not a Play Framework specific artifact and should not be included in the PlayFramework.gitignore.
Official Documentation:
https://mercurial.selenic.com/wiki/FileFormats#Files_in_the_working_directory
https://mercurial.selenic.com/wiki/Subrepository
The specification for the .hg/ folder is simplified, see:
https://stackoverflow.com/a/15057742
Felipe Plets [Tue, 11 Aug 2015 16:48:47 +0000 (13:48 -0300)]
Add .sap Visual Studio profiler session file
In Windows Phone 8 development each profiler session generates a new .sap file, which is automatically added to the root of the project. This is an XML manifest describing the detailed profiler logs created in the PerfLogs folder.
(cdep) illabout [Tue, 30 Jun 2015 02:57:53 +0000 (11:57 +0900)]
Added .stack-work/ directory to Haskell .gitignore.
.stack-work/ is a work directory used by the `stack` build tool.
The `stack` build tool has recently been gaining a lot of traction in
the Haskell community. It is very similar to the `cabal` build tool,
which also has entries in this Haskell .gitignore file.
Carl Suster [Wed, 24 Jun 2015 09:17:19 +0000 (19:17 +1000)]
Merge pull request #1562 from 153957/patch-1
Ignore files created by `\tikzexternalize`
When using TikZ & PGF with:
\usepackage{tikz} \usetikzlibrary{external} \tikzexternalize
It creates .dpth and .md5 files for the externalized tikzpictures.
See these pages in section 50 Externalization Library:
p.617 - 50.4.1 Support for Labels and References In External Files
p.621 - /tikz/external/up to date check
In the PGF manual:
http://mirrors.ctan.org/graphics/pgf/base/doc/pgfmanual.pdf
Arne de Laat [Wed, 24 Jun 2015 09:09:57 +0000 (11:09 +0200)]
Ignore files created by `\tikzexternalize`
When using TikZ & PGF with:
`\usepackage{tikz} \usetikzlibrary{external} \tikzexternalize`
It creates .dpth and .md5 files for the externalized tikzpictures.
Florian Fida [Wed, 17 Jun 2015 19:46:54 +0000 (21:46 +0200)]
Update Typo3.gitignore for CMS v6.2
Typo3 now has an official way of overriding Configuration (AdditionalConfiguration.php).
/t3lib has moved into the /typo3 Directory.
Removed v4 specific ignores because it is deprecated and should no longer be used.
There were ignores missing for the symlinked setup.
Brian Gesiak [Tue, 9 Jun 2015 04:24:09 +0000 (00:24 -0400)]
[ObjC][Swift] Ignore Xcode SCM blueprint files
These files are automatically generated by Xcode and maintain
information regarding source control. Xcode is typically used
in Objective-C and Swift projects, so add these to the ignored files for
these platforms.
Carl Suster [Sat, 30 May 2015 04:07:11 +0000 (14:07 +1000)]
Merge pull request #1523 from dash00/master
[Tex] Change *.mtc0 to *.mtc[0-9] *.mtc[1-9][0-9]
>`\@tocfile`
The name of the file containing the minitoc is constructed from `\jobname` and a suffix `\@tocfile`, which is `.mtc` (long extensions) or `.M` (short extensions) followed by the absolute number of the minitoc.
Jeremy Coatelen [Fri, 15 May 2015 12:21:22 +0000 (14:21 +0200)]
[Tex] Change *.mtc0 to *.mtc[1-9][0-9]
When using minitoc package, LateX often generates multiple .mtc files such as `*.mtc0`, `*.mtc1`, ..., `*.mtc13`, ... This patch allows one to ignore all *.mtc files from index 0 to index 99 (ignoring `*.mtc[1-9][0-9]`).
Zander Bolgar [Thu, 14 May 2015 19:03:22 +0000 (15:03 -0400)]
Remove Meteor.gitignore
There are only two entries in this .gitignore, and both are not needed.
- .meteor/local is already ignored by the standard Meteor .gitignore that is included with every project. This is redundant and should b left solely to the standard Meteor .gitignore in case this changes in the future.
- .meteor/meteorite should no longer be in any Meteor project. Meteorite was a package manager for Meteor, but it has been replaced by an official package manager built into the Meteor CLI. This directory should not exist, except on out of date Meteor projects which already have this ignore present.
Darwin Bautista [Thu, 7 May 2015 05:39:08 +0000 (13:39 +0800)]
Android: Remove redundant pattern for matching build directories
build/ already matches all directories named 'build' in the repository,
regardless of level. Gradle can have more than two levels of project nesting.
However, /*/build/ matches only the 'build' directories of 2nd-level projects.
Thus, the first pattern is more appropriate than the second.