Skip to content

Contribute

Aaron Robert edited this page May 10, 2020 · 5 revisions

Fork repository

  1. Fork repository.
  2. Enable actions.

Clone to local file system

Init Submodule repo:

git submodule update --init --recursive

Note: For WSL developer, you should set your filemode to false once cloned:

git config core.filemode false

New branch

  1. In your local repository or your forked repository, create a new branch.
git checkout -b new_branch_name // or you can create a branch in Github.
  1. Commit code to your new branch
  2. Push to the remote repository(your forked repository).
git push origin your_remote_branch

New pull request

  1. Create a new pull request: your_forked_repository/your_new_branch -> smark/master
  2. Make sure to pass all action.
Clone this wiki locally