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