Комментарии:
I love such small / quick tips. Thank you for that
ОтветитьNice tips, keep them coming! 🥳
Ответить# Ammends all existing changes to the latest commit without changing commit message
git config --global alias.amend "commit --amend --no-edit"
Then just
git amend
to amend staged files
git amend -a
to amend all files
You can do everything from the command line, there isn't a single thing the IDE does that you cannot do in the command line. That being said, it might be more convenient for the casual user to click a few buttons than type the commands needed
ОтветитьHow many days or maybe months! we must wait for jetbrains 2022.3 release?
ОтветитьHow is this different from making a second commit and then squashing them?
ОтветитьAmazing explanation!
Ответить