From 85e387f99a9b29282e727606de84721d36c95da0 Mon Sep 17 00:00:00 2001 From: mira Date: Sun, 15 Mar 2026 16:02:41 +0100 Subject: [PATCH] gitignore --- .gitignore | 1 + deploy.sh | 11 +++++++++++ 2 files changed, 12 insertions(+) create mode 100644 .gitignore create mode 100755 deploy.sh diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..0d20b64 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +*.pyc diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..2f008d6 --- /dev/null +++ b/deploy.sh @@ -0,0 +1,11 @@ +#!/bin/bash +cd content +# 1. Save any new comments first +git add comments.csv +git commit -m "chore: save comments before update" +git push origin main + +# 2. Now update the whole blog +cd .. +git pull +git submodule update --init --recursive