Skip to content

Latest commit

 

History

History
21 lines (17 loc) · 1.11 KB

CONTRIBUTING.md

File metadata and controls

21 lines (17 loc) · 1.11 KB

Contributing

If you would like to contribute code to this project you can do so through GitHub by forking the repository and sending a pull request.

When submitting code follow the existing conventions and code style. Ensure that your code changes build and unit tests pass.

Creating Personal Access Token (PAT)

To publish this library to github, you need to create a Personal Access Token (PAT) on GitHub. Please follow the instructions below:

Specify user name and token as Shell Environment Variables

  • In your shell file like .bash_profile, .zshrc, OR .zlogin, add these two statements:
export REPO_READ_WRITE_USER=<<Your Github Username or Email Address>>
export REPO_READ_WRITE_TOKEN=<<Your PAT>>