From 0339d4867c993140465d7600d733b6ec0632516d Mon Sep 17 00:00:00 2001 From: Ben Davis Date: Mon, 1 Apr 2024 14:48:05 -0700 Subject: [PATCH] Adds jenv's .java-version to project .gitignore (#317) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## What * Makes git ignore [`jenv`](https://www.jenv.be/)'s .`.java-version` file, to avoid adding it as an unintended artifact in future commits * As of now, we do not explicitly encourage saving this file, nor do we require [`jenv`](https://www.jenv.be/) to contribute to the project, indicating that [`jenv`](https://www.jenv.be/) is the responsibility of the user, instead of the maintainer(s) ## How * Adds a rule to the project-level .gitignore file to ignore all .java-version files ## Recommended reading order 1. Related to the initial steps in [developing-locally](https://docs.airbyte.com/contributing-to-airbyte/resources/developing-locally) ## Can this PR be safely reverted and rolled back? - [ x ] YES 💚 - [ ] NO ❌ --- .gitignore | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitignore b/.gitignore index 77938eb2396..db1716e0497 100644 --- a/.gitignore +++ b/.gitignore @@ -16,6 +16,9 @@ data **/gmon.out static_checker_reports/ +# ignore jenv artifacts +.java-version + # Logs acceptance_tests_logs/