blob: 84d9ccc895320cdfd0e2e7f9788db5b5a190f081 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#### To review with Git
To review an updated patchset
git fetch origin && git checkout ${ticketBranch} && git pull --ff-only
To review a rewritten patchset
git fetch origin && git checkout -B ${ticketBranch}
|