Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
Chris Wanstrath e106726a3c Merge pull request #150 from philippbosch/master il y a 13 ans
Global Merge pull request #153 from ovargas27/master il y a 13 ans
Actionscript.gitignore Update to the Actionscript ignore file to put the .settings reference as a directory il y a 13 ans
Android.gitignore Updated Generated Files location (*R was kind of dangerous), added local.properties il y a 13 ans
Autotools.gitignore Removed empty line from Autotools.gitignore il y a 13 ans
C++.gitignore Fixed comments in C++.gitignore il y a 13 ans
CFWheels.gitignore add cfwheels gitignore il y a 13 ans
CMake.gitignore Added a .gitignore for files auto-generated by the CMake build-system. il y a 13 ans
CSharp.gitignore Removed CSharp independent ignores, which are already in the globals VisualStudio.gitignore & Windows.gitignore. il y a 13 ans
CakePHP.gitignore Don't ignore empty files meant to preserve the file structure of an application within a git repository for later deployment il y a 13 ans
CodeIgniter.gitignore Changes to support CodeIgniter (Reactor) 2.0 il y a 13 ans
Compass.gitignore Ignore .sass-cache directory in Compass projects. il y a 13 ans
Concrete5.gitignore Added Concrete5 CMS .gitignore file il y a 13 ans
Coq.gitignore add Coq gitignore il y a 13 ans
Django.gitignore Added .pyc to Django.gitignore il y a 13 ans
Drupal.gitignore Added more rules to work as non core drupal developer il y a 13 ans
Erlang.gitignore Added erlang gitignore il y a 13 ans
ExpressionEngine.gitignore Added ExpressionEngine gitignore file. il y a 13 ans
ForceDotCom.gitignore Initial commit, Force.com gitignore file. il y a 13 ans
Go.gitignore Added Go.gitignore il y a 13 ans
Grails.gitignore Added common .gitignore for the Grails framework il y a 13 ans
Haskell.gitignore Haskell.gitignore: ignore files produced by c2hs il y a 13 ans
Java.gitignore Added OSX icons, moved bin/** from Java to Eclipse, added *.class to Java il y a 13 ans
Jboss.gitignore Jboss gitignore file il y a 13 ans
Jython.gitignore Jython ignores il y a 13 ans
Kohana.gitignore Kohana-PHP gitignore il y a 13 ans
LaTeX.gitignore Added LaTeX temp files for List of Tables (*.lot files). il y a 13 ans
LemonStand.gitignore Add LemonStand gitignore. il y a 13 ans
Lilypond.gitignore Add ignore file for lilypond. il y a 13 ans
Lithium.gitignore Adding Lithium ignores. il y a 13 ans
Magento.gitignore update Magento.gitignore to work with Magento 1.6 il y a 13 ans
Maven.gitignore Added Maven gitignore il y a 13 ans
Node.gitignore [minor] Update Node.gitignore for npm 1.0 il y a 13 ans
OCaml.gitignore Add OCaml gitignore il y a 13 ans
Objective-C.gitignore Fixed comment in Objective-C.gitignore il y a 13 ans
Perl.gitignore added .build - used by Dist::Zilla il y a 13 ans
PlayFramework.gitignore Ignoring precompiled directory il y a 13 ans
Python.gitignore Update Python.gitignore with some commonly used patterns for buildout-based projects il y a 13 ans
Qooxdoo.gitignore Add gitignore for qooxdoo apps il y a 13 ans
README.md Fix readme about config setting il y a 13 ans
Rails.gitignore added pickle generated files il y a 13 ans
RhodesRhomobile.gitignore Add Rhodes mobile application framework gitignore il y a 13 ans
Ruby.gitignore Keep entries sorted to make it easier to lookup for a specific item or spot duplicates. il y a 13 ans
Scala.gitignore Added scala gitignore il y a 13 ans
SeamGen.gitignore Added ignore patterns for projects generated using seam-gen il y a 13 ans
Symfony.gitignore Add ignore for Base classes from Doctrine and Propel ORM. il y a 13 ans
Symfony2.gitignore Symfony2 gitignore il y a 13 ans
Tasm.gitignore Add Tasm.gitignore il y a 13 ans
TurboGears2.gitignore Add for TurboGears2 (based off of Python template) il y a 13 ans
VB.Net.gitignore Added a VB.Net gitignore il y a 13 ans
Waf.gitignore added Waf.gitignore il y a 13 ans
Wordpress.gitignore Added system files to Wordpress.gitignore il y a 13 ans
Yii.gitignore Adding Yii ignores il y a 13 ans
ZendFramework.gitignore Added ZendFramework.gitignore. il y a 13 ans
gcov.gitignore .gitignore for gcov files il y a 13 ans
opencart.gitignore Opencart gitignore file il y a 13 ans

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.