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.
Jan Michael Alonzo b2788d6ed2 Add Rhodes mobile application framework gitignore vor 13 Jahren
Global Ignore .loadpath file in Eclipse 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 to ignore autotools generated files vor 13 Jahren
C++.gitignore add basic gitignore for C++ vor 13 Jahren
CMake.gitignore Added a .gitignore for files auto-generated by the CMake build-system. vor 13 Jahren
CSharp.gitignore Adding C# ignores vor 13 Jahren
CakePHP.gitignore added CakePHP gitignore vor 13 Jahren
CodeIgniter.gitignore Added CodeIgniter ignores vor 13 Jahren
Django.gitignore Adding Emacs backup, and Vi swap ignores to Global/ vor 13 Jahren
Erlang.gitignore Added erlang gitignore vor 13 Jahren
Go.gitignore Added Go.gitignore vor 13 Jahren
Grails.gitignore Added common .gitignore for the Grails framework vor 13 Jahren
Jython.gitignore Jython ignores vor 13 Jahren
Kohana.gitignore Kohana-PHP gitignore vor 13 Jahren
LaTeX.gitignore (La)TeX, BibTeX, latexmk, etc 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
Objective-C.gitignore Removing .DS_Store; specific to OS X, and redundant with Global/OSX vor 13 Jahren
Perl.gitignore Add gitignore for Perl projects vor 13 Jahren
Python.gitignore Add exclusions for setup.py behaviors vor 13 Jahren
README.md Fix readme about config setting vor 13 Jahren
Rails.gitignore Ignore .orig files for Rails 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
Symfony.gitignore ignore propel properties vor 13 Jahren
TurboGears2.gitignore Add for TurboGears2 (based off of Python template) 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.