Fix PR diff documentation to use git instead of tea
The tea CLI doesn't have a command to output PR diff content directly. The -f diff flag only returns a URL. Updated docs to use tea pulls checkout followed by git diff main...HEAD. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit was merged in pull request #14.
This commit is contained in:
@@ -83,7 +83,10 @@ tea pulls --state closed # Closed/merged PRs
|
||||
# View PR
|
||||
tea pulls <number> # PR details
|
||||
tea pulls <number> --comments # Include comments
|
||||
tea pulls <number> -f diff # PR diff
|
||||
|
||||
# View PR diff (tea doesn't have a diff command, use git)
|
||||
tea pulls checkout <number> # First checkout the PR branch
|
||||
git diff main...HEAD # Diff against main branch
|
||||
|
||||
# Create PR
|
||||
tea pulls create --title "<title>" --description "<body>"
|
||||
|
||||
Reference in New Issue
Block a user