git-phlow icon indicating copy to clipboard operation
git-phlow copied to clipboard

Feature: Add, commit, sqash in one command

Open SimonHoiberg opened this issue 4 years ago • 0 comments

Feature request

As a developer, I want to make the common procedure of adding to a recent commit easier by using a single command.

Scenario

You just commit your changes and pushed to remote. Now you realize that you did a small typo or the like, and you want to have this change included in your most recent commit.

Normally, you will now have to: git add .
git commit -m "..."
git rebase -i HEAD~2
Squash the latest commit "..."
Remove the commit message by commenting out. git push -f

Feature

Have all this included in one command.
Example: git phlow append .
git push -f

SimonHoiberg avatar Feb 20 '20 10:02 SimonHoiberg