commited -> committed

This commit is contained in:
Marvin Wendt 2019-09-01 14:54:49 +02:00
parent 14bae6523e
commit 1e18d76ec8
No known key found for this signature in database
GPG Key ID: 273E01721E1C5338
1 changed files with 1 additions and 1 deletions

View File

@ -544,7 +544,7 @@ pick 4b6e19a The second to last commit
pick f4037ec The last commit
```
This tells rebase that you want to edit your third last commit and keep the other two unaltered. Then you'll save (and close) the editor. Git will then start to rebase. It stops on the commit you want to alter, giving you the chance to edit that commit. Now you can apply the changes which you missed applying when you initially commited that commit. You do so by editing and staging them. Afterwards you'll run
This tells rebase that you want to edit your third last commit and keep the other two unaltered. Then you'll save (and close) the editor. Git will then start to rebase. It stops on the commit you want to alter, giving you the chance to edit that commit. Now you can apply the changes which you missed applying when you initially committed that commit. You do so by editing and staging them. Afterwards you'll run
```sh
(your-branch)$ git commit --amend