git checkout development —-> move from current branch to master
git pull origin development —-> take the latest content from master
git checkout receptionist_API —-> move from master to your current branch
git merge development —-> merging the latest content of master into your branch
Comments