From: kosmirror <kos...@us...> - 2025-09-21 01:12:57
|
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "A pseudo Operating System for the Dreamcast.". The branch, master has been updated via afedb3ac510ddaafb8780adfc9f8435c12a651cf (commit) from 1675181e4460d44b9d03d5f7123d4074826029e7 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit afedb3ac510ddaafb8780adfc9f8435c12a651cf Author: darc <da...@pr...> Date: Sat Sep 20 14:03:37 2025 -0500 Ignore .cache/, .clangd, .envrc and compile_commands.json For users of language servers, these files are used to specify compilation parameters or are generated for use by the language server. They should be ignored by git as they are not relevant to the repo itself. ----------------------------------------------------------------------- Summary of changes: .gitignore | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.gitignore b/.gitignore index a4e8474b..fc95a5a1 100644 --- a/.gitignore +++ b/.gitignore @@ -9,7 +9,11 @@ *~ .*.swp .DS_Store +.cache/ .vscode/ +.clangd +.envrc +compile_commands.json environ.sh romdisk.img /doc/reference/ hooks/post-receive -- A pseudo Operating System for the Dreamcast. |