I\'ve been using Git Extensions for a while now (it\'s awesome!) but I haven\'t found a simple answer to the following:
Sometimes, when typing a com
From git-rebase doc, "interactive mode" section:
If you want to fold two or more commits into one, replace the command "pick" for the second and subsequent commits with "squash" or "fixup". If the commits had different authors, the folded commit will be attributed to the author of the first commit. The suggested commit message for the folded commit is the concatenation of the commit messages of the first commit and of those with the "squash" command, but omits the commit messages of commits with the "fixup" command.