diff options
author | Alexandre Jesus <adbjesus@gmail.com> | 2016-08-22 16:35:31 +0100 |
---|---|---|
committer | Alexandre Jesus <adbjesus@gmail.com> | 2016-08-22 16:35:31 +0100 |
commit | 3c8f9385498611df123d5f07d0e52035b568d415 (patch) | |
tree | 790528ae70db81429d6cec0fd7892ac130535d7b /.gitignore | |
parent | 66cfb031dfa81fcb083335a709cb4bd561faccb2 (diff) | |
download | libuknapsack-3c8f9385498611df123d5f07d0e52035b568d415.tar.gz libuknapsack-3c8f9385498611df123d5f07d0e52035b568d415.zip |
Initial code
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..40a1124 --- /dev/null +++ b/.gitignore @@ -0,0 +1,67 @@ + +# Created by https://www.gitignore.io/api/vim,linux,osx,cmake + +### Vim ### +# swap +[._]*.s[a-w][a-z] +[._]s[a-w][a-z] +# session +Session.vim +# temporary +.netrwhist +*~ +# auto-generated tag files +tags + + +### Linux ### +*~ + +# temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* + +# KDE directory preferences +.directory + +# Linux trash folder which might appear on any partition or disk +.Trash-* + + +### OSX ### +*.DS_Store +.AppleDouble +.LSOverride + +# Icon must end with two \r +Icon
+ +# Thumbnails +._* + +# Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent + +# Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk + + +### CMake ### +CMakeCache.txt +CMakeFiles +CMakeScripts +Makefile +cmake_install.cmake +install_manifest.txt +CTestTestfile.cmake +_build +_install |