Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Changed 'git checkout develop' to 'git checkout master'

...

Once you're done, squash all those changes into a single commit on the develop branch, and delete the temporary branch:

git checkout developmaster
git merge --squash work
git commit -a

...