forked fromgithub/gitignore
- Notifications
You must be signed in to change notification settings - Fork0
A collection of useful .gitignore templates
NotificationsYou must be signed in to change notification settings
darcyparker/gitignore
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
That's what we're trying to build. Please contributebyforking and sending apull request.
Alsoplease only modifyone file per commit. This'llmake merging easier for everyone.
Global gitignores (OS-specific, editor-specific) should go into theGlobal/
directory.
For more information on gitignore:gitignore(5)
git has a global configuration that applies rules to all ofyour 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 intermediatefiles that are always ignored.