From ff0372a6613dacddfb540d1b6b36f315baf9010d Mon Sep 17 00:00:00 2001 From: Wenbo Yang Date: Sun, 5 Feb 2017 16:45:16 +0800 Subject: [PATCH] Update .gitignore. --- .gitignore | 99 +++++++++++++++++++++++++++++++++++++++++++++++++++++- 1 file changed, 98 insertions(+), 1 deletion(-) mode change 100644 => 100755 .gitignore diff --git a/.gitignore b/.gitignore old mode 100644 new mode 100755 index f04acc0..eff292b --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,99 @@ -.DS_Store +## General + +# Compiled Object files +*.slo +*.lo +*.o +*.cuo + +# Compiled Dynamic libraries +*.so +*.dylib + +# Compiled Static libraries +*.lai +*.la *.a + +# Compiled protocol buffers +*.pb.h +*.pb.cc +*_pb2.py + +# Compiled python +*.pyc + +# Compiled MATLAB +*.mex* + +# IPython notebook checkpoints +.ipynb_checkpoints + +# Editor temporaries +*.swp +*~ + +# Sublime Text settings +*.sublime-workspace +*.sublime-project + +# Eclipse Project settings +*.*project +.settings + +# QtCreator files +*.user + +# PyCharm files +.idea + +# Visual Studio Code files +.vscode + +# OSX dir files +.DS_Store + +## Caffe + +# User's build configuration +Makefile.config + +# Data and models are either +# 1. reference, and not casually committed +# 2. custom, and live on their own unless they're deliberated contributed +data/* +models/* +*.caffemodel +*.caffemodel.h5 +*.solverstate +*.solverstate.h5 +*.binaryproto +*leveldb +*lmdb + +# build, distribute, and bins (+ python proto bindings) +build +.build_debug/* +.build_release/* +distribute/* +*.testbin +*.bin +python/caffe/proto/ +cmake_build +.cmake_build + +# Generated documentation +docs/_site +docs/_includes +docs/gathered +_site +doxygen +docs/dev + +# LevelDB files +*.sst +*.ldb +LOCK +LOG* +CURRENT +MANIFEST-*