This is an automated email from the ASF dual-hosted git repository. jin pushed a commit to branch gitignore in repository https://gitbox.apache.org/repos/asf/incubator-hugegraph.git
commit 9d950a5f4090457eb79bd191046278728b95afcf Author: imbajin <[email protected]> AuthorDate: Wed Oct 26 17:19:34 2022 +0800 chore: improve gitignore file --- .gitignore | 85 +++++++++++++++++++++++++++++++++++++++++++++++++++++--------- 1 file changed, 73 insertions(+), 12 deletions(-) diff --git a/.gitignore b/.gitignore index 8d21d36ac..f7bcdbf5a 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,51 @@ -.DS_Store -*.iml +target/ +**.db +logs/ +ui +node_modules +upload-files/ +demo* +gen-java +build +*.class + +### STS ### +.apt_generated +.classpath +.factorypath +.project +.settings +.springBeans +.sts4-cache +.svn + +### IntelliJ IDEA ### +.idea +.idea/ *.iws +*.iml +*.ipr + +### NetBeans ### +/nbproject/private/ +/nbbuild/ +/dist/ +/nbdist/ +/.nb-gradle/ +build/ + +### VS Code ### +.vscode/ + +# misc +.DS_Store +*/.DS_Store +**/*.DS_Store +.env.local +.env.development.local +.env.test.local +.env.production.local + *.orig *.rej **/.keep @@ -10,13 +55,29 @@ *.swp *.log *.pyc -.idea -.svn -.classpath -.project -.settings -target -gen-java -build -node* -hugegraph-*.*.* + +# maven ignore +output/ +*.war +*.zip +*.tar +*.tar.gz +tree.txt +*.versionsBackup + +# eclipse ignore +.settings/ + +# temp ignore +*.cache +*.diff +*.patch +*.tmp + +# system ignore +Thumbs.db +hs_err_pid* +# mobile Tools for Java (J2ME) +.mtj.tmp/ +# blueJ files +*.ctxt
