5 ms·
For very short, "oh there's a syntax error I missed" commits, "commit --amend" is very useful, and quicker than "rebase -i".
by alunny 15y ago
For very short, "oh there's a syntax error I missed" commits, "commit --amend" is very useful, and quicker than "rebase -i".
- mark_story 15y agoFor the extra lazy, you can use git aliases to make `git amend` or `git ca`.
- daemin 15y ago"git commit --amend" is very useful if you realise you forgot to include some files in the last commit. Although if you committed since then you might be better off adding a new commit with the missing files and then doing a "git rebase -i" to move and squash the commits as appropriate.