summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md8
1 files changed, 8 insertions, 0 deletions
diff --git a/README.md b/README.md
index 8c769862..f0592393 100644
--- a/README.md
+++ b/README.md
@@ -11,6 +11,8 @@
# h 옵션 필수임. 심볼릭링크 날려먹으면 node_modules 내부에서 문제생김.
tar -czhvf archive_$(date +%Y%m%d_%H%M%S).tar.gz --exclude="node_modules" --exclude="public" --exclude=".next" --exclude=".git" --exclude="tmp" --exclude="temp" .
+
+zip -r archive-20250710.zip . -x "./public/*" "./.git/*" "./.next/*" "./tmp/*" "./temp/*" "./.cursor/*"
```
2. 전체 압축
@@ -25,6 +27,12 @@ tar -czhf ./archive_$(date +%Y%m%d_%H%M%S).tar.gz \
--exclude=".next" \
-C ./evcp .
+tar -czvf ./archive_$(date +%Y%m%d_%H%M%S).tar.gz \
+ --exclude=".git" \
+ --exclude="public" \
+ --exclude=".next" \
+ -C ./evcp .
+
# .git 경로 제외 압축
tar -czhf ./archive_$(date +%Y%m%d_%H%M%S).tar.gz --exclude=".git" \-C ./evcp .