-
Notifications
You must be signed in to change notification settings - Fork 5
How to release to OSCaR Open Source
Pirun Seng edited this page Dec 14, 2018
·
2 revisions
First of all, you may want to add a new origin that points to the open source repo, oscar-web-os.
Consider we have a new origin called public
. And assume that we have a development
branch which is checked out from the master
branch in each repository, private and public (open source). So, the following are the steps to push our latest feature development and/or bug fixed:
git checkout development
git pull public development
git pull public master
git merge master
git add .
git commit -m 'Your commit message'
git push origin development
git push public development
Go to public repository and send pull request to merge development into master