mirror of
https://github.com/google/nomulus
synced 2026-01-06 13:36:48 +00:00
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
93 lines
1.5 KiB
Plaintext
93 lines
1.5 KiB
Plaintext
/bazel-*
|
|
|
|
######################################################################
|
|
# Java Ignores
|
|
|
|
*.class
|
|
|
|
# Mobile Tools for Java (J2ME)
|
|
.mtj.tmp/
|
|
|
|
# Package Files #
|
|
*.jar
|
|
*.war
|
|
*.ear
|
|
!/third_party/**/*.jar
|
|
|
|
# virtual machine crash logs, see http://www.java.com/en/download/help/error_hotspot.xml
|
|
hs_err_pid*
|
|
|
|
######################################################################
|
|
# Eclipse Ignores
|
|
|
|
.metadata
|
|
bin/
|
|
tmp/
|
|
*.tmp
|
|
*.bak
|
|
*.swp
|
|
*~.nib
|
|
local.properties
|
|
.settings/
|
|
.loadpath
|
|
|
|
# Eclipse Core
|
|
.project
|
|
|
|
# External tool builders
|
|
.externalToolBuilders/
|
|
|
|
# Locally stored "Eclipse launch configurations"
|
|
*.launch
|
|
|
|
# PyDev specific (Python IDE for Eclipse)
|
|
*.pydevproject
|
|
|
|
# CDT-specific (C/C++ Development Tooling)
|
|
.cproject
|
|
|
|
# JDT-specific (Eclipse Java Development Tools)
|
|
.classpath
|
|
|
|
# Java annotation processor (APT)
|
|
.factorypath
|
|
|
|
# PDT-specific (PHP Development Tools)
|
|
.buildpath
|
|
|
|
# sbteclipse plugin
|
|
.target
|
|
|
|
# Tern plugin
|
|
.tern-project
|
|
|
|
# TeXlipse plugin
|
|
.texlipse
|
|
|
|
# STS (Spring Tool Suite)
|
|
.springBeans
|
|
|
|
# Code Recommenders
|
|
.recommenders/
|
|
|
|
# Auto-generated java files
|
|
autogenerated/
|
|
|
|
######################################################################
|
|
# Python Ignores
|
|
|
|
*.pyc
|
|
|
|
######################################################################
|
|
# Gradle Ignores
|
|
|
|
# We don't want to ignore the gradle jar files
|
|
!/gradle/gradle/wrapper/**/*.jar
|
|
.gradle/
|
|
/gradle/.gradle
|
|
/gradle/**/WEB-INF
|
|
/gradle/**/build
|
|
/gradle/node_modules/**
|
|
!/gradle/node_modules/soyutils_usegoog.js
|
|
/repos/
|