Skip to content

Latest commit

 

History

History
41 lines (28 loc) · 563 Bytes

CONTRIBUTING.md

File metadata and controls

41 lines (28 loc) · 563 Bytes

environment

I use nvm to manage my node versions.

brew install nvm

I use yarn as my node package manager

brew install yarn

development setup

  • create a fork of the repo, clone it, and install the dependencies
cd git-workspace
nvm install
yarn
  • setup git hooks
npx husky install
  • build it in watch mode
yarn build --watch
  • you can now use the cli
./git-dev <command_name> [command_args] [command_options]