#How to use git pull to update local version of repository
###Prerequisites
run git clone on the repository you want to update
git clone https://github.com/rlopezlu/ExpressionPTToTree.git
###To git pull
- In your terminal, navigate using
cd
to the Otree folder containing settings.py, manage.py, and the ExpressionPTT folder - run 'git pull'
- run 'otree resetdb' and press y when prompted
- run 'otree runserver'
- go to to url localhost:8000 or http://127.0.0.1:8000/
###To git commit push
- git add .
- git commit -m "comment"
- git push orign master