Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
dotfiles/.gitignore
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
151 lines (113 sloc)
2.13 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Created by http://www.gitignore.io | |
# | |
# | |
# NOTE! Don't add files that are generated in specific | |
# subdirectories here. Add them in the ".gitignore" file | |
# in that subdirectory instead. | |
# | |
# NOTE! Please use 'git ls-files -i --exclude-standard' | |
# command after changing this file, to see if there are | |
# any tracked files which get ignored after the change. | |
# | |
### NetBeans ### | |
nbproject/private/ | |
build/ | |
nbbuild/ | |
dist/ | |
nbdist/ | |
nbactions.xml | |
nb-configuration.xml | |
### Eclipse ### | |
*.pydevproject | |
.metadata | |
.gradle | |
tmp/ | |
*.tmp | |
*.bak | |
*.swp | |
*~.nib | |
local.properties | |
.settings/ | |
.loadpath | |
# External tool builders | |
.externalToolBuilders/ | |
# Locally stored "Eclipse launch configurations" | |
*.launch | |
# CDT-specific | |
.cproject | |
# PDT-specific | |
.buildpath | |
# sbteclipse plugin | |
.target | |
# TeXlipse plugin | |
.texlipse | |
### PhpStorm ### | |
# Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm | |
## Directory-based project format | |
.idea/ | |
# if you remove the above rule, at least ignore user-specific stuff: | |
# .idea/workspace.xml | |
# .idea/tasks.xml | |
# and these sensitive or high-churn files: | |
# .idea/dataSources.ids | |
# .idea/dataSources.xml | |
# .idea/sqlDataSources.xml | |
# .idea/dynamic.xml | |
## File-based project format | |
*.ipr | |
*.iws | |
*.iml | |
## Additional for IntelliJ | |
out/ | |
# generated by mpeltonen/sbt-idea plugin | |
.idea_modules/ | |
# generated by JIRA plugin | |
atlassian-ide-plugin.xml | |
# generated by Crashlytics plugin (for Android Studio and Intellij) | |
com_crashlytics_export_strings.xml | |
### Windows ### | |
# Windows image file caches | |
Thumbs.db | |
ehthumbs.db | |
# Folder config file | |
Desktop.ini | |
# Recycle Bin used on file shares | |
$RECYCLE.BIN/ | |
# Windows Installer files | |
*.cab | |
*.msi | |
*.msm | |
*.msp | |
### OSX ### | |
.DS_Store | |
.AppleDouble | |
.LSOverride | |
# Icon must end with two \r | |
Icon | |
# Thumbnails | |
._* | |
# Files that might appear on external disk | |
.Spotlight-V100 | |
.Trashes | |
# Directories potentially created on remote AFP share | |
.AppleDB | |
.AppleDesktop | |
Network Trash Folder | |
Temporary Items | |
.apdisk | |
### Linux ### | |
*~ | |
# KDE directory preferences | |
.directory | |
# user settings | |
.extra | |
.vimrc.extra | |
.path | |
# Ctags file | |
tags | |
# Vim swap files | |
*.sw? | |
# Vim session files | |
*.vimsession | |
# Compiled Python files | |
*.pyc |