-
Notifications
You must be signed in to change notification settings - Fork 20
Workflow on Github
Ping Huang edited this page May 12, 2016
·
2 revisions
- Fork your own code base
Click "Fork" button on the top right of the project page
- Setup ENV
# git clone https://github.com/YOUR_ACCOUNT/nvme.git
# git remote add official https://github.com/vmware/nvme.git
- Develop a feature
# git fetch official develop
# git checkout -b feature/feature-a official/develop
# git add
# git commit
# git add
# git commit
- Rebase and push to Github
# git checkout feature/feature-a
# git fetch official develop
# git rebase -i official/develop
…
# git push origin +feature/feature-a (-- force)
- Now create pull request on Github.