本書為 OpenStack 相關技術整理與部署操作實例,也持續針對新加入套件進行介紹與說明,未來會進一步針對套件的程式碼進行窺探,除了透過該書紀錄所學,也一併推廣 OpenStack 相關技術。
- 在
Github
上fork
到自己的 Repository,例如:<User>/openstack-book.git
,然後clone
到 local 端,並設定 Git 使用者資訊。
git clone https://github.com/kairen/openstack-book.git
cd openstack-book
git config user.name "User"
git config user.email [email protected]
- 修改程式碼或頁面後,透過
commit
來提交到自己的 Repository:
git commit -am "Fix issue #1: change helo to hello"
git push
若新增採用一般文字訊息,如
Add neutron vlan tag intro
。
- 在 GitHub 上提交一個 Pull Request。
- 持續的針對 Project Repository 進行更新內容:
git remote add upstream https://github.com/kairen/openstack-book.git
git fetch upstream
git checkout master
git rebase upstream/master
git push -f origin master