Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 10 additions & 2 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,18 @@ descriptive commits.

## Installation

To make commitizen available in your system
Install commitizen in your system using `pipx` (Recommended, <https://pypa.github.io/pipx/installation/>):

```bash
pip install --user -U Commitizen
pipx ensurepath
pipx install commitizen
pipx upgrade commitizen
```

Install commitizen using `pip` with `--user` flag:

```bash
pip install --user -U commitizen
```

### Python project
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/gitlab_ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ auto-bump:
- "which ssh-agent || ( apt-get update -qy && apt-get install openssh-client -qqy )"
- eval `ssh-agent -s`
- echo "${SSH_PRIVATE_KEY}" | tr -d '\r' | ssh-add - > /dev/null # add ssh key
- pip3 install -U Commitizen # install commitizen
- pip3 install -U commitizen # install commitizen
- mkdir -p ~/.ssh
- chmod 700 ~/.ssh
- echo "$SSH_PUBLIC_KEY" >> ~/.ssh/id_rsa.pub
Expand Down
Loading