From 7a47b431f7c6a12989cd48d2ff423c4bb968ddb1 Mon Sep 17 00:00:00 2001 From: Sergei Vorobev Date: Mon, 15 May 2017 12:11:22 -0700 Subject: [PATCH] Fix .gitignore pattern Summary: `java/**.asc` is not a correct gitignore pattern See https://git-scm.com/docs/gitignore for the list of allowed `**` patterns It seems reasonable to assume that intention is `java/**/*.asc` The reason why it bothers me is the fact that ripgrep parses .gitignore files and complains about invalid pattern https://github.com/BurntSushi/ripgrep Closes https://github.com/facebook/rocksdb/pull/2214 Differential Revision: D5063030 Pulled By: yiwu-arbug fbshipit-source-id: ddd6682b81f03134be15f20fd596130776b69695 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ee43456ce..00c9e6c4d 100644 --- a/.gitignore +++ b/.gitignore @@ -59,7 +59,7 @@ rocksdb.h unity.cc java/crossbuild/.vagrant .vagrant/ -java/**.asc +java/**/*.asc java/javadoc scan_build_report/