diff options
author | 2023-10-10 21:49:34 +0000 | |
---|---|---|
committer | 2023-10-10 21:54:59 +0000 | |
commit | 70a2438d62df10c32897ab6bd191e372a618af78 (patch) | |
tree | 54c80c027aed6fadd927e52bf1162858233525de | |
parent | 5d6006d85b27e0f8732b16998b90de21a9bf749f (diff) |
git: Add "**/target" to gitignore
This is an annoying artifact generated sometimes by working in rust. It
can interfere with git operations and we shouldn't let it be committed.
Other packages have similar rules, so this should be OK.
Test: n/a
Change-Id: I5f166dadb81d246c6d2a587a68299999db91cc11
-rw-r--r-- | .gitignore | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore index ed653c6b4a..1ad8a24a4b 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,6 @@ .idea/ .vscode/ *.code-workspace + +# Rust artifacts +**/target/ |