Mike Pretzlaw [Fri, 11 Sep 2015 04:54:59 +0000 (06:54 +0200)]
WordPress: Only ignore files in root to support other plugins
Most files are ignores without defining the directory.
This caused trouble with several plugins.
To fix that some files should only be ignored in the root directory.
- .htaccess is only ignored in the root directory
due to some plugins or devs that need and create the htaccess
for security issues in subfolders
- sitemap.xml and sitemap.xml.gz is only ignored in the root directory
due to plugins that have an equal name and are therefor ignored
- Those files are ordered alphabetically
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.
The file name was incorrect, so it was having no effect. Also, the sandbox environment that this was supposed to be ignoring is deprecated. Probably best to just drop it entirely.