If you are familiar with how GitHub Pull Requests work, you should feel right at home contributing to Darling.
Locate the repository that you made changes in on GitHub. The following command can help.
user@machine:src/external/less$ git remote get-url origin https://github.com/darlinghq/darling-less.git
If it is an https scheme then you can paste the URL directly into your browser.
Once at the page for the repository you made changes to, click the fork button. GitHub will then take you to the page for your fork of that repository. The last step here is to copy the URL for your fork. Use the Clone or download button to copy it.
Create and check out a branch describing your changes. In this example, we will use reinvent-wheel. Next, add your fork as a remote.
git remote add myfork git@github.com:ahyattdev/darling-less.git
After this, push your commits to your fork.
git push -u myfork reinvent-wheel
The -u myfork part is only necessary when a branch has never been pushed to your fork before.
On the GitHub page of your fork, select the branch you just pushed from the branch dropdown menu (you may need to reload). Click the New pull request button. Give it a useful title and descriptive comment. After this, you can click create.
After this, your changes will be reviewed by a Darling Project member.