tisonkun commented on code in PR #1477: URL: https://github.com/apache/incubator-kvrocks/pull/1477#discussion_r1207934352
########## .dockerignore: ########## @@ -1,5 +1,54 @@ -**/.git -**/.gitignore -**/.github -**/tests -Dockerfile +/.git +/.gitignore +/.github +/tests +/Dockerfile + +# Prerequisites +*.d + +# Compiled Object files +*.slo +*.lo +*.o +*.obj + +# Precompiled Headers +*.gch +*.pch + +# Compiled Dynamic libraries +*.so +*.dylib +*.dll + +# Fortran module files +*.mod +*.smod + +# Compiled Static libraries +*.lai +*.la +*.a +*.lib + +# Executables +*.exe +*.out +*.app + +*.pyc +*.swp +*.swo +.DS_Store +version.h + +.idea +.vscode +.cache + +compactdb +testdb + +build Review Comment: Add `.gitignore` content. Avoid build content conflict issues. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
