From 784a7581e2c080f923ff071cb29b8cd50210ef3b Mon Sep 17 00:00:00 2001 From: jianglai Date: Tue, 23 Apr 2019 13:38:54 -0700 Subject: [PATCH] Update .gitignore file When a release repo is first created by combining the public and the internal repos, we need to make sure to include files that are currently excluded in the public repo's .gitignore but have been tracked before the exclusion rules are added (because the rules do not apply retroactively: if a file is already tracked by git, even if it later matches a rule in .gitignore, it will not be excluded). ------------- Created by MOE: https://github.com/google/moe MOE_MIGRATED_REVID=244916005 --- .gitignore | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 38a3abb46..01a585c6e 100644 --- a/.gitignore +++ b/.gitignore @@ -12,6 +12,7 @@ *.jar *.war *.ear +!/third_party/**/*.jar # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml hs_err_pid* @@ -86,6 +87,6 @@ autogenerated/ /gradle/.gradle /gradle/**/WEB-INF /gradle/**/build -/gradle/node_modules/ +/gradle/node_modules/** !/gradle/node_modules/soyutils_usegoog.js /repos/