Skip to content
This repository was archived by the owner on Jul 13, 2024. It is now read-only.

Allow to configure commit default options at branch level

Compare
Choose a tag to compare
@nicoespeon nicoespeon released this 16 Dec 17:36
· 1038 commits to master since this release

Now you can do things like:

var dev = master.branch({
  name: "dev",
  color: "cyan",
  commitDefaultOptions: { color: "cyan" }
});

This will make your commits be cyan by default on dev branch.
It works for others commit options too.