From 0e70c51bf3b93d26da05a0d91a77ff2820e9a077 Mon Sep 17 00:00:00 2001 From: "seonkyu.kim" Date: Tue, 25 Feb 2025 22:36:16 +0900 Subject: [PATCH] =?UTF-8?q?[=F0=9F=91=B7=F0=9F=8F=BB]=20git=20=EC=B4=88?= =?UTF-8?q?=EA=B8=B0=ED=99=94=20=EC=A7=84=ED=96=89=20=EC=A4=91?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 59 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d13ec6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,59 @@ +# 특정 환경에 따라 추가 +./private/ +./privacy/ +./publish/ +publish/ +./bin/ + + + +# 기본 파일 및 폴더 제외 +*.log +*.env +*.bak +*.tmp +*.swp + +# macOS 관련 파일 제외 +._* +.DS_Store +.AppleDouble +.LSOverride +.Spotlight-V100 +.Trashes + +# Windows 관련 +Thumbs.db +ehthumbs.db +desktop.ini + +# Visual Studio 관련 +.vscode/ +.vs/ +*.suo +*.user +*.userosscache +*.sln.docstates + +# Rider 관련 +.idea/ +*.sln.iml + +# .NET 관련 +bin/ +obj/ +*.pdb +*.dll +*.exe +*.nuget/ + +# Blazor 관련 +**/wwwroot/_framework/ + +# Docker 관련 +docker-compose.override.yml +Dockerfile + +# 기타 캐시 파일 +**/*.cache +**/*.tmp \ No newline at end of file