You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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
The text was updated successfully, but these errors were encountered:
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
The text was updated successfully, but these errors were encountered: