From 1d835d35536fe5886ad4a87eb6f6eb13244211e6 Mon Sep 17 00:00:00 2001 From: jbranchaud Date: Thu, 1 Jan 2026 11:51:23 -0700 Subject: [PATCH] Simplify notes:sync to pull directly into local main Was fetching remote then checking out stale local branch --- Taskfile.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Taskfile.yml b/Taskfile.yml index 07bea00..4e0bcda 100644 --- a/Taskfile.yml +++ b/Taskfile.yml @@ -32,8 +32,7 @@ tasks: notes:sync: desc: Sync latest changes from the notes submodule cmds: - - git submodule update --remote {{.NOTES_DIR}} - - cd {{.NOTES_DIR}} && git checkout main + - cd {{.NOTES_DIR}} && git checkout main && git pull silent: false notes:open: