Master mit main zusammenführen
git checkout master
git pull origin master
git merge test
git push origin master
|_Genos_|
git checkout master
git pull origin master
git merge test
git push origin master
git checkout main
git merge master
git push origin main
1. //pull the latest changes of current development branch if any
git pull (current development branch)
2. //switch to master branch
git checkout master
3. //pull all the changes if any
git pull
4. //Now merge development into master
git merge development
5. //push the master branch
git push origin master
git checkout <branchname>
git merge master -m 'your message here'
git push origin <branchname>
git checkout feature1
git merge master
git checkout master
git pull
git checkout test
git merge master
git push