Files
docs/public/template-sync-strategy/reference/cheatsheet.md
S.Gromov 1a14df9366 feat: добавить документацию Template Sync Strategy
- добавлены каноны и VitePress-сайт стратегии обновления шаблонов

- подключена карточка документации на главной странице

- добавлены сборочные скрипты, Caddy-маршрут и Docker-сборка

- добавлена git-иконка для карточки и сгенерированы публичные артефакты
2026-05-13 23:23:31 +03:00

1.5 KiB
Raw Blame History

url, description
url description
/template-sync-strategy/reference/cheatsheet.md Короткий набор команд для регулярного обновления приложения от шаблона.

Памятка

Рабочая схема:

templates/master -> template -> sync/* -> master

Обновить template

В репозитории приложения:

git switch template
git pull --ff-only
git push

Это подтягивает свежий шаблон из templates/master и пушит его в origin/template.

Создать ветку обновления

git fetch origin
git switch -c sync/update-template-vX origin/master
git merge origin/template

Если есть конфликты, решить их в этой же ветке:

git add .
git commit

Запушить sync-ветку

git push -u origin sync/update-template-vX

Влить через UI

Создать PR/MR:

source: sync/update-template-vX
target: master

Важно:

squash = off

Проверка

git --no-pager log --oneline --graph --decorate --all --max-count=30

Суть процесса

  1. Обновить template из templates/master.
  2. Создать sync/* от origin/master.
  3. Влить origin/template в sync/*.
  4. Решить конфликты, если есть.
  5. Запушить sync/*.
  6. Через UI влить sync/* -> master.