From 101bedda97b0c8e05a243799ee5bac4d49a45b31 Mon Sep 17 00:00:00 2001 From: LC mac Date: Tue, 13 Jan 2026 02:07:51 +0800 Subject: [PATCH] modify git ignore --- .gitignore | 46 +++++++++++++++++++++------------------------- 1 file changed, 21 insertions(+), 25 deletions(-) diff --git a/.gitignore b/.gitignore index 87465b6..691a382 100644 --- a/.gitignore +++ b/.gitignore @@ -1,28 +1,24 @@ -# ---> Go -# If you prefer the allow list template instead of the deny list, see community template: -# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore -# -# Binaries for programs and plugins +# Logs +*.log +logs/ +ddns-updater.log + +# Local config / secrets +config.yaml +*.env +*.secret +*.key +*.pem + +# Build outputs +ddns-updater +ddns-updater-linux *.exe -*.exe~ -*.dll -*.so -*.dylib - -# Test binary, built with `go test -c` -*.test -*config.yaml - -# Output of the go coverage tool, specifically when used with LiteIDE *.out -# Dependency directories (remove the comment below to include it) -# vendor/ - -# Go workspace file -go.work -go.work.sum - -# env file -.env - +# IDE/editor cruft +.vscode/ +.idea/ +*.swp +*.swo +.DS_Store