Skip to content

Commit

Permalink
Apply suggestions from mmiotaj review
Browse files Browse the repository at this point in the history
  • Loading branch information
grego952 committed Mar 20, 2024
1 parent a226892 commit 23a74cb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/contributing/03-git-workflow.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ Press `q` to exit the log.
```bash
git rebase HEAD~{number} -i # Enter the interactive mode to squash the number of commits. For example, to enter interactive mode and squash the last three commits:
git rebase HEAD~3 -i
```
```

Leave the top commit, and squash the remaining ones by changing the `pick` command to `squash`. To change the command, type `cw` and then enter `s` in place of `pick`. Press `esc` to exit the insert mode, move to the line with the next commit, and enter `.` to make the same change there. Repeat the same action with all the remaining commits. When you finish, save the changes and exit the editor by pressing `:wq`.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -195,7 +195,7 @@ Here is the preferred terminology to use in the Kyma documentation:
| **the following** | **below**, **this**, **the described**, ... | or "as shown in the example" |
| **the previous**, **earlier** | **above**, **this**, **the described**, ... | or "as shown in the example" |

### Command line Arguments
### Command Line Arguments

Use short command line arguments whenever possible.

Expand Down

0 comments on commit 23a74cb

Please sign in to comment.