From f34195bd76cb14de065892b8c60b381a1f7b1c78 Mon Sep 17 00:00:00 2001 From: hugo Date: Mon, 16 Feb 2026 08:16:27 +0100 Subject: [PATCH] chore: clarification for git sync --- IMPLEMENT_GIT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/IMPLEMENT_GIT.md b/IMPLEMENT_GIT.md index 2211115..c1838e6 100644 --- a/IMPLEMENT_GIT.md +++ b/IMPLEMENT_GIT.md @@ -58,7 +58,7 @@ This plan is scoped to the existing Electron architecture: ## No Repository State - If current project is not a git repo: - show `Initialize Git` button. - - action runs `git init`, then enables Git LFS and tracks image file types (e.g. `*.png`, `*.jpg`, `*.jpeg`, `*.gif`, `*.webp`, `*.svg`, `*.avif`, `*.heic`) so binary image assets are excluded from normal Git object/version storage. + - action runs `git init`, then enables Git LFS for this repository only (`git lfs install --local`, no global hook installation) and tracks image file types (e.g. `*.png`, `*.jpg`, `*.jpeg`, `*.gif`, `*.webp`, `*.svg`, `*.avif`, `*.heic`) so binary image assets are excluded from normal Git object/version storage. - if git executable not found, show explicit install guidance message. - if Git LFS executable not found, show explicit install guidance message and block completion of initialization.