E-learning platform with both React and React Native.
- Fork this repo to your own account
- Push to the forked repo not this repo
- After your changes are ready, "Create a pull request"
- Someone here of the team can accept, review, and discuss your changes
- You may be asked to change some stuff
- After all changed are accepted, the pull request will be "Merged" to the main repository
How to push to the forked repo
If your already have the main repo in your local PC:
git remote add mine <url-to-your-forked-repo>
git branch mine master
git push mine master
Otherwise clone the forked repo
git clone <url-to-your-forked-repo>
git branch --set-upstream-to=origin/master
git push origin master # or simply `git push`
MIT