Github process

  1. go on githubb
  2. search for the PR waiting for a review and open it
  3. verify if the target branch is right. ex:

<aside> ✍🏼

**d2codex** wants to merge 3 commits into main from feature/env-import

</aside>

  1. start reading the description, differences etc
  2. go in your terminal/editor, naviguate to the right branch, start reading/testing etc

Step Action CLI LazyGit
1 Fetch remote branches git fetch origin f
2 List remote branches git branch -r (n/a if branch doesn’t appear)
b → expand Remotes section; branches from forks may still require CLI fetch.
3 Checkout PR branch git fetch origin feature/builtin-pwd:pr-1git checkout pr-1 Only visible after CLI checkout; restart LazyGit → b → select local branch
4 Test / update PR branch Test in isolation or merge main: git checkout pr-1git merge main Checkout pr-1 → highlight mainm

Notes: