From e909037f6cc2ddabe7aa4178da13a7dd05207f06 Mon Sep 17 00:00:00 2001 From: sendaoYan Date: Mon, 3 Jun 2024 11:17:42 +0800 Subject: [PATCH 1/2] [Misc] Add swp file type into gitignore Summary: Add swp file type and .vscode directory into .gitignore Testing: CI pipeline Reviewers: kuaiwei.kw, xingqizheng.xqz Issue: https://github.com/dragonwell-project/dragonwell11/issues/835 --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 2c9d161c742..f6e3653e80a 100644 --- a/.gitignore +++ b/.gitignore @@ -15,3 +15,5 @@ NashornProfile.txt **/JTwork/** /compile_commands.json /.cache +*.swp +.vscode/* From 1c3078bf5f85d30344ba21a51ff17d6947bf9499 Mon Sep 17 00:00:00 2001 From: sendaoYan Date: Mon, 3 Jun 2024 11:22:17 +0800 Subject: [PATCH 2/2] [Misc] Add swp file type into gitignore Summary: Add swp file type and .vscode directory into .gitignore Testing: CI pipeline Reviewers: kuaiwei.kw, xingqizheng.xqz Issue: https://github.com/dragonwell-project/dragonwell11/issues/835 --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index f6e3653e80a..6eb77c17fed 100644 --- a/.gitignore +++ b/.gitignore @@ -1,6 +1,7 @@ /build/ /dist/ /.idea/ +/.vscode/ nbproject/private/ /webrev /.src-rev @@ -16,4 +17,3 @@ NashornProfile.txt /compile_commands.json /.cache *.swp -.vscode/*