You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

README.md 919B

13 years ago
13 years ago
13 years ago
13 years ago
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.