浏览代码

add comments to gitignore

gero3 5 年之前
父节点
当前提交
9df4f89749
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      .gitignore

+ 6 - 0
.gitignore

@@ -7,6 +7,12 @@ npm-debug.log
 .jshintrc
 .vs/
 
+# npm install --prefix test adds files in the test folder.
+# There are 2 kindsof files, those without extension and those with cmd extension.
+# To ignore files without a extension, following precedure is nessecary:
+# - ignore all files in the test folder
+# - unignore all files in subdirectories of the test folder
+# - unignore all files with an extension in the test folder
 test/*
 !test/*/
 !test/*.*