[Enhancement] add ignore folders and files to development environment (#32884)
Fixes #issue When FE builds a local development environment, such as IntelliJ IDEA, some classes do not exist and the local development environment will report a red error. These classes are generated by gensrc during compilation, and we need to manually copy them to the fe core directory, but we need to block these files. Signed-off-by: guoxiaolongzte <467887319@qq.com>
This commit is contained in:
parent
71da055c02
commit
c9667e528d
|
|
@ -34,6 +34,10 @@ fe/*/target
|
|||
fe/fe-core/gen
|
||||
fe/fe-common/.classpath
|
||||
fe/fe-core/src/main/java/com/starrocks/sql/parser/gen
|
||||
fe/fe-core/src/main/java/com/starrocks/builtins
|
||||
fe/fe-core/src/main/java/com/starrocks/common/Version.java
|
||||
fe/fe-core/src/main/java/com/starrocks/proto
|
||||
fe/fe-core/src/main/java/com/starrocks/thrift
|
||||
fs_brokers/apache_hdfs_broker/src/main/resources/
|
||||
fs_brokers/apache_hdfs_broker/src/main/thrift/
|
||||
fs_brokers/apache_hdfs_broker/jindosdk-4.6.2
|
||||
|
|
|
|||
Loading…
Reference in New Issue