Skip to content

Latest commit

 

History

History
38 lines (31 loc) · 657 Bytes

CONTRIBUTING.md

File metadata and controls

38 lines (31 loc) · 657 Bytes

Steps to Contribute

  1. Fork the repo.

  2. Clone the forked repo.

git clone <forked-repository-url>
  1. Enter into the cloned repository.
cd miku
  1. Checkout development branch
git switch development
  1. Create a new branch
git checkout -b <your-branch-name>
  1. Make the necessary changes and add them.(Do make sure that you are in the top level directory when executing this command)
git add .
  1. Commit the changes.
git commit -m "your commit msg"
  1. Push everything on your forked repository
git push -u origin <your-branch-name>
  1. And then open a pull request.