krb5 commit: Add Github provided OS and IDE files to .gitignore

Tom Yu tlyu at mit.edu
Mon Dec 28 11:41:29 EST 2015


https://github.com/krb5/krb5/commit/6cd1ed92898387e307a2ae777c7473126eddb605
commit 6cd1ed92898387e307a2ae777c7473126eddb605
Author: Sarah Day <sarahday at mit.edu>
Date:   Mon Dec 21 14:29:18 2015 -0500

    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 files changed, 94 insertions(+), 11 deletions(-)

diff --git a/.gitignore b/.gitignore
index 752683c..ac718e2 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
 


More information about the cvs-krb5 mailing list