feat(editor): rename :sync to :gp
Pairs with :gl as the push half of the git pair. Same behavior (fmt → save → commit → push); notices, logs, and current READMEs follow, historical docs keep :sync as a record of their time.
This commit is contained in:
@@ -190,13 +190,13 @@ builds are incremental.
|
||||
|
||||
### Build modes — git (default) vs light
|
||||
|
||||
Publishing (`:sync` → git push) is expensive to build: it drags in libgit2 +
|
||||
Publishing (`:gp` → git push) is expensive to build: it drags in libgit2 +
|
||||
mbedTLS (compiled as an esp-idf component) and the `git2` crate. It sits behind
|
||||
a switch. The nominal build turns it on (it's the product); a **light** build
|
||||
leaves it off — ideal for iterating on the editor, EPD, USB, or SD without
|
||||
paying for libgit2:
|
||||
|
||||
| Build | Command | libgit2 component | `git2` crate | `:sync` |
|
||||
| Build | Command | libgit2 component | `git2` crate | `:gp` |
|
||||
| ----- | ------- | ----------------- | ------------ | ------- |
|
||||
| **Full / git** (default) | `just build` / `just flash` | compiled | linked | save → push |
|
||||
| **Light** | `just build-light` / `just flash-light` | not compiled (empty no-op) | not linked | saves locally, skips push |
|
||||
|
||||
Reference in New Issue
Block a user