How can I merge two commits into one if I already started rebase?
Summary The error message Cannot ‘squash’ without a previous commit means you likely attempted to “squash downward.” Git always squashes a newer commit into an older commit or “upward” as viewed on the interactive rebase todo list, that is into a commit on a previous line. Changing the command on your todo list’s very first … Read more