Answers for "git merge squash"

3

git merge squash

git checkout master			# Switches to your master branch.
git merge --squash bugfix	# All grouped commits from bugfix to current branch
git commit					# Creates a single commit from the merged changes
Posted by: Guest on May-18-2021
0

git merge tag to branch and squash commits

git checkout master
git merge --squash tag
git commit
Posted by: Guest on May-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language