From 2eda925101814538f3dd7fa658123d086e522e2d Mon Sep 17 00:00:00 2001 From: Andrey Lutsenko Date: Sun, 14 Jun 2026 21:42:45 +1000 Subject: [PATCH] =?UTF-8?q?fix:=20.cursor=20=D0=B2=20gitignore,=20sync=20?= =?UTF-8?q?=D0=B1=D0=B5=D0=B7=20git=20add=20-A=20=D0=B8=20=D0=B1=D0=B5?= =?UTF-8?q?=D0=B7=20.cursor=20=D0=BD=D0=B0=20remotes?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 6 +++++- scripts/push-remotes.sh | 5 ++++- 2 files changed, 9 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index c82221a..3fbf6e3 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,4 @@ -# Android / Gradle +# Android / Gradle *.iml .gradle/ /local.properties @@ -27,3 +27,7 @@ app/src/main/java/ru/kalinamall/seaca/ui/screens/DevConnectDefaults.kt # Env .env .env.* + +# Cursor (не в git — см. repo-policy) +.cursor/ +.cursorignore diff --git a/scripts/push-remotes.sh b/scripts/push-remotes.sh index 6fae790..06cfb1c 100755 --- a/scripts/push-remotes.sh +++ b/scripts/push-remotes.sh @@ -26,7 +26,10 @@ sync_remote() { fi done - git add -A + rm -rf .cursor .cursorignore + + git add -u . + git add README.md if git diff --cached --quiet; then echo "[push-remotes] $remote: без изменений" else