From 6cd1ed92898387e307a2ae777c7473126eddb605 Mon Sep 17 00:00:00 2001 From: Sarah Day Date: Mon, 21 Dec 2015 14:29:18 -0500 Subject: [PATCH] Add Github provided OS and IDE files to .gitignore It is a good idea to have a fairly complete .gitignore file. It is helpful for devs to know just what shouldn't end up in the repo, as well as preventing accidental commits and even random trash ending up in master. Many of the files here added from the Github gitignore project found here: https://github.com/github/gitignore --- .gitignore | 105 +++++++++++++++++++++++++++++++++++++++++++++++------ 1 file changed, 94 insertions(+), 11 deletions(-) diff --git a/.gitignore b/.gitignore index 752683c064..ac718e2cb6 100644 --- a/.gitignore +++ b/.gitignore @@ -15,30 +15,113 @@ obj/ testdir/ testlog -# OSX files -.DS_Store +# Ignore the build directory +/build/ + +# The autom4te cache directory +autom4te.cache/ # Generated by Dolphin for individual settings for directories .directory +# Generated by Kate-Part +*.kate-swp +*.new + +# KDevelop files +.kdev4/ +*.kdev4 + # Files generated by merges *.orig -# Windows thumbnail db +# OSX files +.DS_Store +.AppleDouble +.LSOverride + +# OSX Resource Forks +._* + +# OSX Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns + +# OSX Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + +# 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 + +# Windows shortcuts +*.lnk + +# Visual Studio +.vscode -# Eclipse specific files +# TortoiseGit Project-level settings +/.tgitconfig + +# Eclipse generated files + +*.pydevproject +.autotools +.metadata +.gradle +bin/ +tmp/ +*.tmp +*.bak +*.swp +*~.nib +local.properties +.settings/ +.loadpath + +# Eclipse Core .project + +# Eclipse External tool builders +.externalToolBuilders/ + +# Eclipse Locally stored "Eclipse launch configurations" +*.launch + +# Eclipse CDT-specific .cproject -.settings/ -.pydevproject -.autotools -# Ignore the build directory -/build/ +# Eclipse PDT-specific +.buildpath -# The autom4te cache directory -autom4te.cache/ +# Eclipse sbteclipse plugin +.target + +# Eclipse TeXlipse plugin +.texlipse + +# Eclipse STS (Spring Tool Suite) +.springBeans /doc/version.py -- 2.47.2