@@ -24,7 +24,7 @@ The `issues` command allows you to search and inspect issues that have been sync
2424- ** Offline access** - Query issues without internet connectivity
2525
2626:::caution Prerequisites
27- This command only searches issues that have been synced. Make sure to run ` release-tool sync ` first to populate your local database.
27+ This command only searches issues that have been synced. Make sure to run ` release-tool pull ` first to populate your local database.
2828:::
2929
3030## Smart ISSUE_KEY Format
@@ -256,7 +256,7 @@ If you see:
256256
257257Issues not found in database (1):
258258 • 8853 (from branch feat/meta-8853/main, PR #2122)
259- → Issue may be older than sync cutoff date
259+ → Issue may be older than pull cutoff date
260260 → Issue may not exist (typo in branch/PR)
261261 → Sync may not have been run yet
262262```
@@ -280,7 +280,7 @@ Issues not found in database (1):
280280
2812814 . If not found, verify on GitHub or re-run sync:
282282 ``` bash
283- release-tool sync
283+ release-tool pull
284284 ```
285285
286286### Scenario 2: Issue in Different Repo
@@ -418,7 +418,7 @@ Since results are sorted by `created_at DESC`, the first results show the newest
418418release-tool issues --limit 10
419419```
420420
421- ### 5. Verify Sync Coverage
421+ ### 5. Verify Pull Coverage
422422
423423Check if issues from a specific time period are synced:
424424
@@ -435,36 +435,36 @@ release-tool issues --limit 1000 --format csv > all_issues.csv
435435
436436** Error:**
437437```
438- Error: Database not found. Please run 'release-tool sync ' first.
438+ Error: Database not found. Please run 'release-tool pull ' first.
439439```
440440
441441** Solution:**
442442``` bash
443- release-tool sync
443+ release-tool pull
444444```
445445
446- The database is created by the ` sync ` command. If you've never synced, the database doesn't exist yet.
446+ The database is created by the ` pull ` command. If you've never synced, the database doesn't exist yet.
447447
448448### "Repository 'X' not found in database"
449449
450450** Error:**
451451```
452452Error: Repository 'sequentech/unknown' not found in database.
453- Tip: Run 'release-tool sync ' to fetch repository data.
453+ Tip: Run 'release-tool pull ' to fetch repository data.
454454```
455455
456456** Solutions:**
4574571 . Check the repository name spelling
4584582 . Ensure the repository is configured in ` release_tool.toml `
459- 3 . Run ` release-tool sync ` to fetch repository metadata
459+ 3 . Run ` release-tool pull ` to fetch repository metadata
460460
461461### No Results Found
462462
463463If your query returns no results:
464464
4654651 . Verify issues exist on GitHub
466- 2 . Check your sync cutoff date (might be excluding old issues)
467- 3 . Re-run sync: ` release-tool sync `
466+ 2 . Check your pull cutoff date (might be excluding old issues)
467+ 3 . Re-run sync: ` release-tool pull `
4684684 . Try fuzzy matching instead of exact match
469469
470470### CSV Output Looks Wrong in Terminal
0 commit comments