To merge a branch into another, for example we need to merge development
branch into master
branch.
git checkout master
git add .
git commit -m 'Some commit'
git merge development
To merge a branch into another, for example we need to merge development
branch into master
branch.
git checkout master
git add .
git commit -m 'Some commit'
git merge development