Du kannst nicht mehr als 25 Themen auswählen Themen müssen mit entweder einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.
Vitaly _Vi Shukela 8b8ff44ec7 Add .gitignore for Leiningen projects vor 13 Jahren
Global Ignore vim session file. vor 13 Jahren
Actionscript.gitignore Update to the Actionscript ignore file to put the .settings reference as a directory vor 13 Jahren
Android.gitignore add basic Android gitignore vor 13 Jahren
Autotools.gitignore Removed empty line from Autotools.gitignore vor 13 Jahren
C++.gitignore Fixed comments in C++.gitignore vor 13 Jahren
CFWheels.gitignore add cfwheels gitignore vor 13 Jahren
CMake.gitignore Added a .gitignore for files auto-generated by the CMake build-system. vor 13 Jahren
CSharp.gitignore c# projects: ignore user specific files, testresults and windows picture index files vor 13 Jahren
CakePHP.gitignore Don't ignore empty files meant to preserve the file structure of an application within a git repository for later deployment vor 13 Jahren
Clojure.gitignore Add .gitignore for Leiningen projects vor 13 Jahren
CodeIgniter.gitignore Fix typo in CodeIgniter gitignore vor 13 Jahren
Concrete5.gitignore Added Concrete5 CMS .gitignore file vor 13 Jahren
Coq.gitignore add Coq gitignore vor 13 Jahren
Django.gitignore Updating Django gitignore for various reasons vor 13 Jahren
Drupal.gitignore Added more rules to work as non core drupal developer vor 13 Jahren
Erlang.gitignore Added erlang gitignore vor 13 Jahren
ExpressionEngine.gitignore Added ExpressionEngine gitignore file. vor 13 Jahren
Go.gitignore Added Go.gitignore vor 13 Jahren
Grails.gitignore Added common .gitignore for the Grails framework vor 13 Jahren
Haskell.gitignore Haskell.gitignore: ignore files produced by c2hs vor 13 Jahren
Java.gitignore Added OSX icons, moved bin/** from Java to Eclipse, added *.class to Java vor 13 Jahren
Jboss.gitignore Jboss gitignore file vor 13 Jahren
Jython.gitignore Jython ignores vor 13 Jahren
Kohana.gitignore Kohana-PHP gitignore vor 13 Jahren
LaTeX.gitignore Added LaTeX temp files for List of Tables (*.lot files). vor 13 Jahren
Leiningen.gitignore Add .gitignore for Leiningen projects vor 13 Jahren
LemonStand.gitignore Add LemonStand gitignore. vor 13 Jahren
Lilypond.gitignore Add ignore file for lilypond. vor 13 Jahren
Lithium.gitignore Adding Lithium ignores. vor 13 Jahren
Magento.gitignore Added Magento gitignore vor 13 Jahren
Maven.gitignore Added Maven gitignore vor 13 Jahren
Node.gitignore Removing .DS_Store; specific to OS X, and redundant with Global/OSX vor 13 Jahren
OCaml.gitignore Add OCaml gitignore vor 13 Jahren
Objective-C.gitignore Fixed comment in Objective-C.gitignore vor 13 Jahren
Perl.gitignore Add gitignore for Perl projects vor 13 Jahren
PlayFramework.gitignore Add logs and server.pid vor 13 Jahren
Python.gitignore Added buildout directories and the configuration data files. vor 13 Jahren
Qooxdoo.gitignore Add gitignore for qooxdoo apps vor 13 Jahren
README.md Fix readme about config setting vor 13 Jahren
Rails.gitignore added pickle generated files vor 13 Jahren
RhodesRhomobile.gitignore Add Rhodes mobile application framework gitignore vor 13 Jahren
Ruby.gitignore Removing .DS_Store; specific to OS X, and redundant with Global/OSX vor 13 Jahren
Scala.gitignore Added scala gitignore vor 13 Jahren
SeamGen.gitignore Added ignore patterns for projects generated using seam-gen vor 13 Jahren
Symfony.gitignore Add ignore for Base classes from Doctrine and Propel ORM. vor 13 Jahren
Symfony2.gitignore Symfony2 gitignore vor 13 Jahren
Tasm.gitignore Add Tasm.gitignore vor 13 Jahren
TurboGears2.gitignore Add for TurboGears2 (based off of Python template) vor 13 Jahren
VB.Net.gitignore Added a VB.Net gitignore vor 13 Jahren
Waf.gitignore added Waf.gitignore vor 13 Jahren
Wordpress.gitignore Add in rules for WP Super Cache, Google XML Sitemaps, and WP-DBManager plugins. vor 13 Jahren
Yii.gitignore Adding Yii ignores vor 13 Jahren
ZendFramework.gitignore Added ZendFramework.gitignore. vor 13 Jahren
gcov.gitignore .gitignore for gcov files vor 13 Jahren

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.