-
Notifications
You must be signed in to change notification settings - Fork 149
Update for release description in gh pages branch
romani edited this page Oct 30, 2012
·
4 revisions
-
Clone your repository (if not cloned yet).
-
Switch to gh-pages, you might notices that you have only master branch checkouted. But as you named branch as remote one it will switched to it.
git checkout gh-pages
-
Check that in folder you have only file of gh-pages branch
-
Get latest changes from upstream repository
git pull upstream gh-pages
- From current branch create additional branch that will have all your changes.
git checkout -b release-1-6-gh-pages
git push origin release-1-6-gh-pages
- Do changes to index.html.
git add index.html
git status
git commit -m "description for 1.6 was added"
- push recent changes to your repository, in separate branch
git push origin release-1-6-gh-pages
-
Keep all your changes in separate branch at remote to let your mentor review them. You will send "Pull request" from your branch.
-
After you "Pull request" is merged to main project, delete your branch from local and remote
git push origin --delete master-1-6-release