X Tutup
The Wayback Machine - https://web.archive.org/web/20201002123229/https://github.com/MrLuje/vs-commitizen
Skip to content
master
Go to file
Code

Latest commit

 

Git stats

Files

Permalink
Failed to load latest commit information.
Type
Name
Latest commit message
Commit time
 
 
 
 
 
 
 
 
lib
 
 
 
 
 
 
 
 

README.md

vs-commitizen

Build status

This extension adds commitizen support to VisualStudio.

Features

  • Add link in Source control menu and Home view

vs-commitizen_-_home__1.png

  • Add button near to the "Commit" button in Changes view to easily use commitizen

vs-commitizen_-_commit-cz.png

  • Nice page to format your comment using commitizen fashion.

vs-commitizen_-_commitizen_view.png

Customizations

The list of "Type of changes" can be customized, globally or per repository.

The configuration is stored in a .commitizen.json file (schema)

You can access the configuration file directly from VisualStudio menu (files will be generated if not existing yet) :

menu.png

Sample configuration

{
  "$schema": "https://github.com/MrLuje/vs-commitizen/config-schema.json",
  "types": [
    {
      "type": "feat",
      "description": "A new feature"
    },
    {
      "type": "fix",
      "description": "A bug fix"
    },
    {
      "type": "docs",
      "description": "Documentation only changes"
    },
    {
      "type": "test",
      "description": "Adding missing tests or correcting existing tests"
    }
}
You can’t perform that action at this time.
X Tutup