Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 825 Bytes

CONTRIBUTING.md

File metadata and controls

30 lines (22 loc) · 825 Bytes

Contributing Guide

Making Pull Requests

  1. Fork hozuki/Bulletproof.
  2. Clone the forked repository (which is in your account) to your computer and install dependencies.
$ git clone https://github.com/<username>/Bulletproof.git <preferred cloning destination>
$ cd <preferred cloning destination>
$ npm install
$ git submodule update --init --recursive
$ cd <preferred cloning destination>/lib/glantern
$ npm install
  1. Create a branch for modifications.
$ git checkout -b modification_description
  1. Do coding work in the modification_description branch.
  2. Push the modification_description branch to your account.
$ git push origin modification_description
  1. Create a pull request from your account and describe the changes.