how to merge a branch into develop code example
Example 1: merge branch to branch
git checkout master
git merge new-branch
git push
Example 2: merge develop to branch
git checkout develop
git pull
git checkout branch-x
git rebase develop
Example 3: how to merge a branch to master in git
# Check out development branch
git checkout development
# Make changes, commit...
...
# Optional: Push development changes to the remote
git push origin development
# Check out production branch
git checkout production
# Merge the changes from the development branch
git merge development
# Push the changes to the remote
git push origin production
# Check out the development branch again
git checkout development