Fix branch mode prompt for /review (#4061)
Updates `/review` branch mode to review against a branch's upstream.
This commit is contained in:
parent
be366a31ab
commit
8bc73a2bfd
1 changed files with 1 additions and 1 deletions
|
|
@ -1666,7 +1666,7 @@ impl ChatWidget {
|
|||
tx3.send(AppEvent::CodexOp(Op::Review {
|
||||
review_request: ReviewRequest {
|
||||
prompt: format!(
|
||||
"Review the code changes against the base branch '{branch}'. Start by finding the merge diff between the current branch and {branch} e.g. (git merge-base HEAD {branch}), then run `git diff` against that SHA to see what changes we would merge into the {branch} branch. Provide prioritized, actionable findings."
|
||||
"Review the code changes against the base branch '{branch}'. Start by finding the merge diff between the current branch and {branch}'s upstream e.g. (`git merge-base HEAD \"$(git rev-parse --abbrev-ref \"{branch}@{{upstream}}\")\"`), then run `git diff` against that SHA to see what changes we would merge into the {branch} branch. Provide prioritized, actionable findings."
|
||||
),
|
||||
user_facing_hint: format!("changes against '{branch}'"),
|
||||
},
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue