Josh Whaley [Wed, 13 Aug 2014 14:52:00 +0000 (10:52 -0400)]
Update Node.gitignore
Updated link for the dependency directory from [this](https://npmjs.org/doc/faq.html#Should-I-check-my-node_modules-folder-into-git) to [this](https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-).
Ben Bodenmiller [Thu, 10 Jul 2014 15:38:21 +0000 (08:38 -0700)]
Clarify what commenting *.pubxml does
https://github.com/github/gitignore/commit/08def965cd1c0241a7cffbe7c26a74b3cab61243 incorrect states that commenting *.pubxml will keep your passwords hidden when it will actually do the opposite. This clarifies what commenting *.pubxml does and warns you of the dangers.
Carl Suster [Tue, 8 Jul 2014 02:17:13 +0000 (12:17 +1000)]
Clarify the NuGet packages comments
Amends #1131
See these resources for explanation:
http://docs.nuget.org/docs/reference/package-restore
http://docs.nuget.org/docs/workflows/using-nuget-without-committing-packages
Amends #1131 - fixes Umbraco template to compensate for the change in the
VisualStudio template which would lead to issues if the two were used together.
These rules were originally added by @bbodenmiller in #1013
Fixed pattern for excluding nuget packages so that it works both for top level package folder and for any lower level package folders. Re-include patterns fixed the same way.
dsmithni [Tue, 24 Jun 2014 15:56:38 +0000 (10:56 -0500)]
LabVIEW.gitignore
LabVIEW (ni.com/labview) is a graphical system design tool.
File extensions are listed here:
http://zone.ni.com/reference/en-XX/help/371361K-01/lvhowto/lv_file_extensions/
.llb and lvlibp are for binary distributions, and are excluded for the same reason shared objects are excluded.
.aliases and .lvlps are metadata related to the project file, and are automatically updated when moving between machines (see note on that help page).
Adilson Carvalho [Wed, 18 Jun 2014 12:15:02 +0000 (09:15 -0300)]
Must ignore x86 directory as well
When installing SQLite embebed on my C# project I've noted that it generates both directories,
`x86` and `x64` but only `x64` was present on `.gitignore`.
ahmyi [Tue, 17 Jun 2014 18:12:59 +0000 (02:12 +0800)]
Update Unity.gitignore
Sysinfo.txt is generated by unity if occurs any crashes. The content consist of users system information, running process etc. I don't think that should be shared with others.
Kolja Dummann [Sun, 15 Dec 2013 17:44:00 +0000 (18:44 +0100)]
add Meta Programming System gitignore files
The Meta Programming System is a language workbench created by JetBrains.
http://jetbrains.com/mps/
By default this file will ignore the generated java source and the compiled java classes that are
produced by the language compiler. It will only add the Models which contain all information
necessary to reproduce the the java source code and the the resulting class files.
In addition to the generated source code it will ignore the test result files and test property files,
because those are also generated from the models.
The ignore file also prevents commiting the workspace.xml which contains the currently editor state,
like open files and cursor position.
Abhishek L [Fri, 30 May 2014 16:41:45 +0000 (22:11 +0530)]
elisp: adding .cask files to gitignore
cask is a dependency/package management tool for Emacs lisp packages. Adding
.cask to gitignore template to avoid tracking of installed packages not
a part of repository
According to [this](http://www.magentocommerce.com/magento-connect/thefind-feed-1.html) TheFind Feed module does not come with the latest versions of Magento( > 1.6).
Carl Suster [Tue, 6 May 2014 07:38:57 +0000 (17:38 +1000)]
Remove redundant Umbraco exceptions to VS rules
From the discussion on #1013:
Since the rule in VS is packages/*, the fact that it contains a slash means
that it is anchored to the top level. That is, is will only apply to
a directory called packages at the top level, and not to any at deeper
directories like App_Data. So these rules at the bottom of your changes
actually aren't necessary after all. I just confirmed this with a quick test.