Update VVC Software Development Workflow authored by Frank Bossen's avatar Frank Bossen
......@@ -146,6 +146,11 @@ A merge request may be updated as follows:
**Note:** There is no need to close the request, because the existing request will automatically be updated with the changes, after they are pushed.
**Note:** If a rebase operation (git rebase) is done in step 2 a forced push may be required:
```
git push origin --force
```
Keeping your fork in sync
-------------------------
......@@ -183,3 +188,4 @@ git stash
git rebase master
git stash apply
```