FAQ

  • How to get commitizen and cz-conventional-changelog work for non-node-git-repo?

    You can get commitizen and cz-conventional-changelog work for non-node-git-repo with global installation. Here are the steps that I have followed.

    yarn global add commitizen cz-conventional-changelog
    echo '{ "path": "cz-conventional-changelog" }' > ~/.czrc; # will create .czrc
    cd non-node-git-repo
    touch foo
    git cz -a

Last updated