Skip to content

Commit

Permalink
Update index.md
Browse files Browse the repository at this point in the history
Signed-off-by: Timothy Rule <[email protected]>
  • Loading branch information
timrulebosch authored Aug 19, 2024
1 parent 1d2e395 commit 126bb1a
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions content/docs/devel/contribution/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,22 @@ git cherry-pick a253c6359aa85da5627caf2f746282ac0e53cea1

### Working with PRs

#### Rebase a PR and push to requesters branch.

```bash
# Checkout the PR locally.
git fetch origin pull/86/head:PR-BRANCH
git checkout PR-BRANCH

# Rebase the PR and resolve any conflicts.
git pull --rebase upstream main

# Push the PR back to the originatory fork/branch (force if necessary).
git push https://github.boschdevcloud.com/PR-USER/dse.modelc.git HEAD:devel
git push https://github.boschdevcloud.com/PR-USER/dse.modelc.git HEAD:devel --force
```


#### Modify an existing PR on the requester fork/branch.

```bash
Expand Down

0 comments on commit 126bb1a

Please sign in to comment.