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
This commit is contained in:
jianglai 2019-04-23 13:38:54 -07:00
parent 1e58ef4efa
commit 37c5139629

3
.gitignore vendored
View file

@ -12,6 +12,7 @@
*.jar *.jar
*.war *.war
*.ear *.ear
!/third_party/**/*.jar
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml # virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
hs_err_pid* hs_err_pid*
@ -86,6 +87,6 @@ autogenerated/
/gradle/.gradle /gradle/.gradle
/gradle/**/WEB-INF /gradle/**/WEB-INF
/gradle/**/build /gradle/**/build
/gradle/node_modules/ /gradle/node_modules/**
!/gradle/node_modules/soyutils_usegoog.js !/gradle/node_modules/soyutils_usegoog.js
/repos/ /repos/