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.

vor 13 Jahren
vor 13 Jahren
vor 13 Jahren
vor 13 Jahren
1234567891011121314151617181920212223242526272829
  1. # A Collection of Useful .gitignore Templates
  2. That's what we're trying to build. Please contribute
  3. by [forking][fk] and sending a [pull request][pr].
  4. Also **please** only modify **one file** per commit. This'll
  5. make merging easier for everyone.
  6. Global gitignores (OS-specific, editor-specific) should go into the
  7. `Global/` directory.
  8. For more information on gitignore: [gitignore(5)][g5]
  9. [fk]: http://help.github.com/forking/
  10. [pr]: http://help.github.com/pull-requests/
  11. [g5]: http://man.cx/gitignore
  12. ## Global Ignores
  13. git has a global configuration that applies rules to all of
  14. your projects. For example:
  15. git config --global core.excludesfile ~/.global_ignore
  16. ... will apply the rules in ~/.global_ignore for all of your repos.
  17. This is useful if you use an editor (like Emacs) that drops backup files,
  18. or if you work in an environment that generates binary or intermediate
  19. files that are always ignored.