A conversational based habit tracker
git clone https://github.com/functioncall/rescue-habit
pip install -r requirements.txt
python manage.py runserver
<add command here>
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
- Create a separate issue/bug in the issue tracking system and assign it to a contributor.
- Take a pull from remote origin: (IMPORTANT STEP)
git pull origin master
- Create a separate branch for your issue/bug:
git checkout -b issue <issue_number>
Convention for creating branch name:
- if you are going to work on issue number 42, then your branch name should be "issue42" and,
- if its a bug number 10, then branch name should be named as "bug10"
- Resolve the issue/bug and commit in local using below 2 commands:
git add <path_of_required_files>
git commit -m "appropriate message goes here"
- push it to the remote branch :
git push -u origin <branch_name>
- Create a pull request from bitbucket and assign it to a reviewer.