Changes between Version 5 and Version 6 of UsingGitHub
- Timestamp:
- Mar 15, 2012 4:44:49 PM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
UsingGitHub
v5 v6 13 13 1. `$ git checkout master -b awesomefeature` 14 14 1. Write some awesome code. 15 1. Commit locally and push to origin (your GitHub account) as you normally would with git .15 1. Commit locally and push to origin (your GitHub account) as you normally would with git 16 16 17 17 == Tracking upstream == … … 26 26 == Getting your code reviewed == 27 27 28 1. Push your changes to a new feature branch.29 28 1. Find a reviewer who is interested in reviewing your awesome feature. 29 1. Push your lastest commits to your feature branch (e.g., `$ git push origin awesomefeature`) 30 30 1. Create a pull request by going to https://github.com/yourname/webkit/pull/new/awesomefeature 31 31 1. Click the "Change Commits" button to select that reviewer's WebKit repo as the "base branch". ''TODO: Investigate whether we can make reviewers members of the "WebKit" organization so you can just use WebKit/webkit@master as the base branch.''