Get upstream changes

My forked develop branch was a few commits behind. I needed the latest changes to work on release 0.3. Here are some of the steps I took to update my forked AppMaker repo.

Ensure we are on the develop branch

git branch develop

Fetch and merge the latest changes from upstream (AppMaker’s develop branch)

git pull upstream develop

Push changes to our forked AppMaker repo on Github.

git push origin develop