From d79ebbea6f3fb312d99b268d3f9ed53cd35d067d Mon Sep 17 00:00:00 2001 From: Martijn Faassen Date: Mon, 21 Oct 2024 15:34:06 +0200 Subject: [PATCH] Don't use symbolic links for git. Since git 2.23 .gitignore that is a symbolic link is ignored. I made them explicit now (though I'm not sure they're even needed) --- crates/cli/.gitignore | 7 ++++++- crates/macros/.gitignore | 7 ++++++- 2 files changed, 12 insertions(+), 2 deletions(-) mode change 120000 => 100644 crates/cli/.gitignore mode change 120000 => 100644 crates/macros/.gitignore diff --git a/crates/cli/.gitignore b/crates/cli/.gitignore deleted file mode 120000 index 6ef08f9d15..0000000000 --- a/crates/cli/.gitignore +++ /dev/null @@ -1 +0,0 @@ -../../.gitignore \ No newline at end of file diff --git a/crates/cli/.gitignore b/crates/cli/.gitignore new file mode 100644 index 0000000000..89e3a707f6 --- /dev/null +++ b/crates/cli/.gitignore @@ -0,0 +1,6 @@ +/target +Cargo.lock +/.vscode +/.idea +/tmp +expand.rs \ No newline at end of file diff --git a/crates/macros/.gitignore b/crates/macros/.gitignore deleted file mode 120000 index 6ef08f9d15..0000000000 --- a/crates/macros/.gitignore +++ /dev/null @@ -1 +0,0 @@ -../../.gitignore \ No newline at end of file diff --git a/crates/macros/.gitignore b/crates/macros/.gitignore new file mode 100644 index 0000000000..89e3a707f6 --- /dev/null +++ b/crates/macros/.gitignore @@ -0,0 +1,6 @@ +/target +Cargo.lock +/.vscode +/.idea +/tmp +expand.rs \ No newline at end of file