docs/react-wiki-archive/Contributing-to-9.0-rc-branch.md
Prerequisit:
you have the
originandupstreamremotes configured per the [setup instructions](https://github.com/microsoft/fluentui/wiki/Setup#setting-the-upstream-remote
# Fetch changes from `upstream` github.com/microsoft/fluentui
git fetch upstream
# Create a local `9.0-rc` branch starting from the upstream `9.0-rc` branch
git checkout upstream/9.0-rc
# Get latest changes to your local machine
git pull upstream 9.0-rc
# Branch out from 9.0-rc and start developing
git checkout -b <my-branch-name>
git push -u origin <my-branch-name>
9.0-rcBased on your contribution to 9.0-rc branch it might be required to get the fix/change it to master ASAP. If that's the case, please create a PR against master via chery-pick of particular commit. The PR workflow follows standard practices.
9.0-rc back to master/ End of lifeTo merge back to master following workflow should be applied:
9.0-rc branch and fetch latest updates to your local machinegit rebase -i for example):master9.0-rc