1) Create branch
- master branch的任何一個commit都要是可以發佈的正式版本。
- branch命名盡量口語化以敘述句為主。(ex. account-auth, frontend-page, backend-add-post)
2) Add commits
- 描述修正、增加/更改功能使用祈使句,如:fix, add/change。
| // ==UserScript== | |
| // @name Workflowy markdown tags with images -> images | |
| // @namespace http://tampermonkey.net/ | |
| // @version 0.1 | |
| // @description try to take over the world! | |
| // @author You | |
| // @match https://workflowy.com/* | |
| // @grant none | |
| // ==/UserScript== | |
| /* jshint -W097 */ |
1) Create branch
2) Add commits