I have a branch called dmgr2 (development)"dmgr2" in development, and I want to pull from the master branch (live site) and incorporate all the changes into my development branch. isIs there a better way to do this? here
Here is what I had planned on doing, after committing changes:
git checkout dmgr2 git pull origin master thisThis should pull the live changes into my development branch, or do I have this wrong?