From 1dd704dbac231652d9f2be4e5c80d5b810e5ebb8 Mon Sep 17 00:00:00 2001 From: Yang Wang Date: Thu, 23 Sep 2021 13:52:40 +0800 Subject: [PATCH 1/2] Add more pattern in gitignore (#4799) * add more gitignore * add more --- .gitignore | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.gitignore b/.gitignore index 65d27eaa..42863bc8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,8 @@ *.so .idea +__pycache__ +*.egg-info +target +*.log +build +dist From 760df81a515e1b0c0cecb3a7542ac265aeb9e4f5 Mon Sep 17 00:00:00 2001 From: Yina Chen <33650826+cyita@users.noreply.github.com> Date: Mon, 27 Sep 2021 14:51:38 +0800 Subject: [PATCH 2/2] Add bigdl2.0 friesian grpc code (#4787) * add friesian code * meet comments * bug fix * update example config --- .gitignore | 45 +++++++++++++++++++++++++++++++++++++++++++-- 1 file changed, 43 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 42863bc8..a1884137 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,49 @@ +# Compile products +*.pyc +*.class +*.crc +*.o + +# SBT, Maven specific +.cache +.history +.lib/ +lib_managed/ +src_managed/ +project/boot/ +project/plugins/project/ +dependency-reduced-pom.xml + +# IDE specific +.scala_dependencies +.worksheet +*.iml +.idea/ + +# macOS specific +.DS_Store + +# data files +model*.[0-9]* +state*.[0-9]* + +# other +nohup.out +*.log +*.lock +*.un~ +*.idx +.ipynb_checkpoints/ +.project +.settings/ +*/.cache-main +*/.cache-tests +*/.classpath +*/.project +*/.settings/ *.so -.idea __pycache__ *.egg-info target -*.log build dist