Merging multiple branches with git
git checkout master git pull origin feature1 feature2 git checkout develop git pull . master (or maybe git rebase ./master) The first command changes your current branch to master. The second command pulls in changes from the remote feature1 and feature2 branches. This is an “octopus” merge because it merges more than 2 branches. You … Read more