Skip to content

Developer guide: Branching & Working

XuanLi-Leong edited this page Oct 11, 2018 · 3 revisions

How to start working on a feature

1. Update local master

If you have existing local changes, you'll need to stash or commit them. Feel free to chat if this part is unclear. Then:

git checkout master
git pull

2. Create working branch

git checkout -b <initials>/<description of task>_<issue number>

e.g. hc/advice_14

3. Push and start a WIP PR

git push

Go open a PR and fill out a brief English description in the title, link to your issue via #

WIP: English description

When it's done..... change your title to RFR!!!

4. As you develop, push regularly so that we can see your updates!

GO FORTH AND CODE! 🎉