Common tasks for various programming languages.
Download each folder and open the file.
This creates your own copy of the repository.
https://help.github.com/articles/fork-a-repo/
https://help.github.com/articles/cloning-a-repository/
https://github.com/Kunena/Kunena-Forum/wiki/Create-a-new-branch-with-git-and-manage-branches
Make any changes on your local copy of the repo and save your changes.
Use this command to add all files you changed, created, or saved.
git add .
Example:
git commit -m "My fancy new changes"
git push
Now your changes are pushed to your forked copy of the respo.
https://help.github.com/articles/about-pull-requests/
Go to your github account and look for message that asks you if you would like to create a new pull request.
Be sure your newly created branch is selected.
Windows has an issue with long file names, use this command to get around it when checking out this repo:
git config --system core.longpaths true