.gitignore文件大全

Tony Petruzzi 765dd834aa add cfwheels gitignore преди 14 години
Global 4823407194 Merge branch 'master' of https://github.com/d2s/gitignore into d2s-master преди 14 години
Actionscript.gitignore 787f39eaec Update to the Actionscript ignore file to put the .settings reference as a directory преди 14 години
Android.gitignore 1bb483835a add basic Android gitignore преди 14 години
Autotools.gitignore fb8ad2e87b Removed empty line from Autotools.gitignore преди 14 години
C++.gitignore 605476c528 Fixed comments in C++.gitignore преди 14 години
CFWheels.gitignore 765dd834aa add cfwheels gitignore преди 14 години
CMake.gitignore 900d322dd9 Added a .gitignore for files auto-generated by the CMake build-system. преди 14 години
CSharp.gitignore 31198dd999 c# projects: ignore user specific files, testresults and windows picture index files преди 14 години
CakePHP.gitignore fd30555204 Don't ignore empty files meant to preserve the file structure of an application within a git repository for later deployment преди 14 години
CodeIgniter.gitignore 75c65b9ef7 Fix typo in CodeIgniter gitignore преди 14 години
Concrete5.gitignore 73790aa732 Added Concrete5 CMS .gitignore file преди 14 години
Coq.gitignore 2483494fc2 add Coq gitignore преди 14 години
Django.gitignore 42d3cf083f Updating Django gitignore for various reasons преди 14 години
Drupal.gitignore dadf5d35d6 Removed duplicate settings.php. преди 14 години
Erlang.gitignore 8152623b1e Added erlang gitignore преди 14 години
ExpressionEngine.gitignore 550ef6f668 Added ExpressionEngine gitignore file. преди 14 години
Go.gitignore 3d54ffb5fd Added Go.gitignore преди 14 години
Grails.gitignore 43b75915e7 Added common .gitignore for the Grails framework преди 14 години
Haskell.gitignore 3400caaeeb Haskell.gitignore: ignore files produced by c2hs преди 14 години
Java.gitignore 0ae4801e31 Added OSX icons, moved bin/** from Java to Eclipse, added *.class to Java преди 14 години
Jboss.gitignore cd93fbcade Jboss gitignore file преди 14 години
Jython.gitignore 2ce6478f7b Jython ignores преди 14 години
Kohana.gitignore a3a9c380b9 Kohana-PHP gitignore преди 14 години
LaTeX.gitignore 6fe128f7a4 Added patterns for LaTeX Beamer преди 14 години
LemonStand.gitignore 2ed7b7ab6a Add LemonStand gitignore. преди 14 години
Lilypond.gitignore f14c958ecf Add ignore file for lilypond. преди 14 години
Lithium.gitignore 537b947855 Adding Lithium ignores. преди 14 години
Magento.gitignore 64e23e74a6 Added Magento gitignore преди 14 години
Maven.gitignore 0a41318dba Added Maven gitignore преди 14 години
Node.gitignore 330290971a Removing .DS_Store; specific to OS X, and redundant with Global/OSX преди 14 години
OCaml.gitignore ac5192cada Add OCaml gitignore преди 14 години
Objective-C.gitignore e58baf9625 Fixed comment in Objective-C.gitignore преди 14 години
Perl.gitignore 978fdbf0cc Add gitignore for Perl projects преди 14 години
PlayFramework.gitignore 62ea09ae82 Ignoring db, logs, server.pid преди 14 години
Python.gitignore ef299335e6 Added buildout directories and the configuration data files. преди 14 години
README.md fe0a884ba7 Fix readme about config setting преди 14 години
Rails.gitignore 83a92c8e7f added rerun and config ignores преди 14 години
RhodesRhomobile.gitignore b2788d6ed2 Add Rhodes mobile application framework gitignore преди 14 години
Ruby.gitignore 73a214881d Removing .DS_Store; specific to OS X, and redundant with Global/OSX преди 14 години
Scala.gitignore 8db8a470ea Added scala gitignore преди 14 години
SeamGen.gitignore 474d62d8dd Added ignore patterns for projects generated using seam-gen преди 14 години
Symfony.gitignore 8b99c7a245 Add ignore for Base classes from Doctrine and Propel ORM. преди 14 години
Symfony2.gitignore d4fb0f1cd0 Symfony2 gitignore преди 14 години
TurboGears2.gitignore 340ddd1fb4 Add for TurboGears2 (based off of Python template) преди 14 години
VB.Net.gitignore d436e43245 Added a VB.Net gitignore преди 14 години
Waf.gitignore 9abdee41a6 added Waf.gitignore преди 14 години
Wordpress.gitignore 8b9230baed Add in rules for WP Super Cache, Google XML Sitemaps, and WP-DBManager plugins. преди 14 години
ZendFramework.gitignore 6dc2f0a133 Added ZendFramework.gitignore. преди 14 години
gcov.gitignore a9b0aadc98 .gitignore for gcov files преди 14 години

README.md

A Collection of Useful .gitignore Templates

That's what we're trying to build. Please contribute by forking and sending a pull request.

Also please only modify one file per commit. This'll make merging easier for everyone.

Global gitignores (OS-specific, editor-specific) should go into the Global/ directory.

For more information on gitignore: gitignore(5)

Global Ignores

git has a global configuration that applies rules to all of your projects. For example:

git config --global core.excludesfile ~/.global_ignore

... will apply the rules in ~/.global_ignore for all of your repos.

This is useful if you use an editor (like Emacs) that drops backup files, or if you work in an environment that generates binary or intermediate files that are always ignored.