| ... | ... | @@ -30,7 +30,18 @@ Make sure the merge request does not contain [performance crimes](http://www.erp |
|
|
|
|
|
|
|
## Tips
|
|
|
|
|
|
|
|
### Using interdiff
|
|
|
|
### Checking out merge requests locally
|
|
|
|
|
|
|
|
```bash
|
|
|
|
git config --add remote.origin.fetch '+refs/merge-requests/*/head:refs/remotes/origin/mr/*'
|
|
|
|
```
|
|
|
|
|
|
|
|
Then you can
|
|
|
|
```bash
|
|
|
|
git checkout mr/123
|
|
|
|
```
|
|
|
|
|
|
|
|
### Producing interdiff
|
|
|
|
|
|
|
|
After updating patches following up reviewers suggestion, the review process can be simplified if submiter produces an `interdiff` to show clearly what is different with the new version of the patches.
|
|
|
|
|
| ... | ... | |