From 779ed2cda40c86f8409bfc1f1635fccdf19c4f35 Mon Sep 17 00:00:00 2001 From: joeytoday Date: Fri, 12 Dec 2025 10:15:28 +0800 Subject: [PATCH] docs: update common workflows and quickstart sections for clarity and formatting --- docs/users/common-workflow.md | 12 ++++++------ docs/users/quickstart.md | 6 +++--- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/users/common-workflow.md b/docs/users/common-workflow.md index 60a2e888..e43bc58a 100644 --- a/docs/users/common-workflow.md +++ b/docs/users/common-workflow.md @@ -449,15 +449,15 @@ Use arrow keys to navigate and press Enter to select a conversation. Press Esc t > qwen --continue --p "Run the tests again" > ``` -## Run parallel Qwen Code sessions with Git worktrees【TBD 不是特别理解创建 worktree,需要确认一下命令】 +## Run parallel Qwen Code sessions with Git worktrees Suppose you need to work on multiple tasks simultaneously with complete code isolation between Qwen Code instances. -1. Understand Git worktrees +**1. Understand Git worktrees** Git worktrees allow you to check out multiple branches from the same repository into separate directories. Each worktree has its own working directory with isolated files, while sharing the same Git history. Learn more in the [official Git worktree documentation](https://git-scm.com/docs/git-worktree). -2. Create a new worktree +**2. Create a new worktree** ```bash # Create a new worktree with a new branch @@ -469,7 +469,7 @@ git worktree add ../project-bugfix bugfix-123 This creates a new directory with a separate working copy of your repository. -4. Run Qwen Code in each worktree +**3. Run Qwen Code in each worktree** ```bash # Navigate to your worktree @@ -479,14 +479,14 @@ cd ../project-feature-a qwen ``` -5. Run Qwen Code in another worktree +**4. Run Qwen Code in another worktree** ```bash cd ../project-bugfix qwen ``` -6. Manage your worktrees +**5. Manage your worktrees** ```bash # List all worktrees diff --git a/docs/users/quickstart.md b/docs/users/quickstart.md index d0c18445..d6c5818b 100644 --- a/docs/users/quickstart.md +++ b/docs/users/quickstart.md @@ -186,7 +186,7 @@ review my changes and suggest improvements > [!tip] > **Remember**: Qwen Code is your AI pair programmer. Talk to it like you would a helpful colleague - describe what you want to achieve, and it will help you get there. -## 🧭 Essential commands +## Essential commands Here are the most important commands for daily use: @@ -206,7 +206,7 @@ Here are the most important commands for daily use: See the [CLI reference](/users/reference/cli-reference) for a complete list of commands. -## 📌 Pro tips for beginners +## Pro tips for beginners - Be specific with your requests - Instead of: "fix the bug" @@ -236,7 +236,7 @@ See the [CLI reference](/users/reference/cli-reference) for a complete list of c - Press ↑ for command history - Type `/` to see all slash commands -## 🙋🏻 Getting help +## Getting help - **In Qwen Code**: Type `/help` or ask "how do I..." - **Documentation**: You're here! Browse other guides