Skip to content

Latest commit

 

History

History
77 lines (40 loc) · 892 Bytes

CONTRIBUTING.md

File metadata and controls

77 lines (40 loc) · 892 Bytes

Contributing Guidelines

  1. Fork this repo. Please be sure to use the current master branch as your starting point:
https://github.com/sparkplug/momoapi-node
  1. You'll be redirected to:
https://github.com/your-username/momoapi-node
  1. Clone the repository:
git clone https://github.com/your-username/momoapi-node.git
  1. Install the project dependencies:
npm install

or


yarn

  1. Open in the text editor of your choice

  2. Create a New Branch from master: Please make the branch name descriptive.

   cd momoapi-node
   git branch new-branch
   git checkout new-branch
  1. Make your edits locally:
   git add -A
  1. Commit the changes:
   git commit -m "Commit Message Here"
  1. Submit a pull request:
   git push --set-upstream origin new-branch-name