1.0.16 • Published 3 years ago
mainstack-common-api v1.0.16
Mainstack
Mainstack Common Library for API
Usage
- Clone repository using command
git clone https://github.com/The-Mainstack/mainstack-common-api.git cdinto the cloned folder using the commandcd mainstack-common-api- Install project dependencies using the command
yarn install
How To Contribute
- Create a new branch with
git checkout -b [branch-name]. Your branch name should describe the feature you are implementing. e.g
git checkout -b login-with-email- After making changes, run
git add .to stage all of them orgit add [filename]to add only specific files. - Commit your changes by running
git commitproviding a descriptive commit message e.g
git commit -m "added login with email"- Finally push update to remote branch with
git push origin [your-branch-name]e.g
git push origin login-with-email