From e311d388d4fd7619d7f0213d688c10f869127644 Mon Sep 17 00:00:00 2001 From: Jonatan Dahl Date: Fri, 30 Jan 2026 12:56:16 -0500 Subject: [PATCH] docs: update tree output examples to use dots-style format MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Update README and examples to show the new tree visualization format using ● for current branch and ○ for other branches, replacing the old pipe-and-asterisk format. Co-Authored-By: Claude Opus 4.5 --- README.md | 12 ++++++------ docs/examples.md | 14 +++++++------- 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/README.md b/README.md index 3c7cd1f..5efeeae 100644 --- a/README.md +++ b/README.md @@ -52,14 +52,14 @@ git commit -m "Add feature 2" ```bash stack status - main - | - feature-1 [https://github.com/you/repo/pull/1 :open] - | - feature-2 [https://github.com/you/repo/pull/2 :open] * +○ main +│ +○ feature-1 [https://github.com/you/repo/pull/1 :open] +│ +● feature-2 [https://github.com/you/repo/pull/2 :open] ``` -The `*` indicates your current branch. +The `●` indicates your current branch. ### 3. Sync Everything diff --git a/docs/examples.md b/docs/examples.md index 8f905e3..66f5242 100644 --- a/docs/examples.md +++ b/docs/examples.md @@ -23,13 +23,13 @@ stack new auth-logout # View structure stack status # Output: -# main -# | -# auth-system [https://github.com/you/repo/pull/10 :merged] -# | -# auth-login [https://github.com/you/repo/pull/11 :open] -# | -# auth-logout [https://github.com/you/repo/pull/12 :open] * +# ○ main +# │ +# ○ auth-system [https://github.com/you/repo/pull/10 :merged] +# │ +# ○ auth-login [https://github.com/you/repo/pull/11 :open] +# │ +# ● auth-logout [https://github.com/you/repo/pull/12 :open] # Later, after making changes or when main updates stack sync