1
0
Fork 0
freesewing/sites/dev/docs/howtos/git/ammend/readme.mdx
Joost De Cock ab3204f9f1 chore: Port FreeSewing.dev to docusaurus
The replaces the NextJS site powering FreeSewing.dev with a Docusaurus
setup. It's part of my efforts to simplify FreeSewing's setup so we can
focus on our core value proposition.
2024-09-28 13:13:48 +02:00

17 lines
428 B
Text

---
title: Change your commit message for the most recent commit
---
If you've made a typo or have another reason why you'd like to
change the most recent commit message, you run this command:
```bash
git commit --amend
```
If you run it like this, it will spin up your predefined editor.
To specify the updated commit message on the command line, run:
```bash
git commit --amend -m "This is my improved commit message"
```