You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
• Add version 0.3.0 release notes to CHANGELOG
• Consolidate all changeset content into changelog entries
• Improve README formatting with better markdown spacing
• Enhance TESTING.md documentation with clearer formatting
• Document all new features and improvements from changesets
Display the currently loaded configuration with source information.
145
157
146
158
**Usage:**
159
+
147
160
```bash
148
161
lab config show [options]
149
162
```
150
163
151
164
**Options:**
165
+
152
166
-`-p, --path <path>` - Start configuration search from a specific directory
153
167
154
168
**Examples:**
169
+
155
170
```bash
156
171
# Show current configuration
157
172
lab config show
@@ -161,6 +176,7 @@ lab config show --path /path/to/project
161
176
```
162
177
163
178
**What it shows:**
179
+
164
180
- Configuration source (file path or "defaults")
165
181
- Emoji mode status
166
182
- Full configuration in JSON format
@@ -173,15 +189,18 @@ lab config show --path /path/to/project
173
189
Browse and inspect commit history interactively without modifying your repository.
174
190
175
191
**Usage:**
192
+
176
193
```bash
177
194
lab preview [options]
178
195
```
179
196
180
197
**Options:**
198
+
181
199
-`-l, --limit <number>` - Maximum commits to fetch (default: 50, max: 100)
182
200
-`-b, --branch <branch>` - Branch to preview (default: current branch)
183
201
184
202
**Examples:**
203
+
185
204
```bash
186
205
# Browse commits on current branch
187
206
lab preview
@@ -194,6 +213,7 @@ lab preview --limit 25
194
213
```
195
214
196
215
**Interactive Features:**
216
+
197
217
-**Commit List View:**
198
218
- Navigate through commits with pagination (10 per page)
199
219
- Press `0-9` to view details of a specific commit
@@ -211,6 +231,7 @@ lab preview --limit 25
211
231
- Press `?` for help
212
232
213
233
**Notes:**
234
+
214
235
- Read-only operation - does not modify your repository
215
236
- Fetches commits in batches of 50 (up to 100 total)
216
237
- Works on current branch by default
@@ -223,18 +244,21 @@ lab preview --limit 25
223
244
Revert a commit using the project's commit workflow. Select a commit interactively and create a revert commit following your project's commit message format.
224
245
225
246
**Usage:**
247
+
226
248
```bash
227
249
lab revert [options]
228
250
```
229
251
230
252
**Options:**
253
+
231
254
-`-l, --limit <number>` - Maximum commits to fetch (default: 50, max: 100)
232
255
-`-b, --branch <branch>` - Branch to revert from (default: current branch)
0 commit comments