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.
Ryan Pavlik 23673d6c99 Add gitignore for sketchup backup files. il y a 12 ans
Global Merge pull request #183 from x3ro/master il y a 12 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 ReSharper is a add-in which works in Visual Studio only. It's already in the VisualStudio gitignore file. 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
Clojure.gitignore Add .gitignore for Leiningen projects 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 *.plt used by dialyzer il y a 13 ans
ExpressionEngine.gitignore Added ExpressionEngine gitignore file. il y a 13 ans
Finale.gitignore Added a gitignore file for the Finale music notation software il y a 12 ans
ForceDotCom.gitignore Initial commit, Force.com gitignore file. il y a 12 ans
FuelPHP.gitignore FuelPHP gitignore il y a 12 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 Added cabal-dev dir. il y a 12 ans
Java.gitignore Added Java package files (JAR, WAR, EAR) il y a 12 ans
Jboss.gitignore Jboss gitignore file il y a 13 ans
Jekyll.gitignore Add Jekyll.gitignore il y a 12 ans
Joomla.gitignore Added Joomla 1.6 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 Merge pull request #180 from DigitalGuru/master il y a 12 ans
Leiningen.gitignore Add .gitignore for Leiningen projects 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 config/*.yml should not be ignored in Rails il y a 12 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 Add ".scala_dependencies" file generated by Scala-IDE il y a 13 ans
SeamGen.gitignore Added ignore patterns for projects generated using seam-gen il y a 13 ans
SketchUp.gitignore Add gitignore for sketchup backup files. il y a 12 ans
SugarCRM.gitignore Sometime the emails folder starts with an uppercase letter. il y a 12 ans
Symfony.gitignore Added plugin-generated model paths to symfony-1 ignore file. il y a 12 ans
Symfony2.gitignore Updated through http://www.deanoj.co.uk/programming/git/git-ignore-file-for-symfony2/ il y a 12 ans
SymphonyCMS.gitignore Adding Symphony CMS 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 Merge pull request #179 from willmot/master il y a 12 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
nanoc.gitignore Add gitignore for nanoc 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.