2019-04-19, 04:53 PM
I'm afraid I don't have the time now to do a complete?step-by-step guide, however maybe these few lines might be helpful. I am new to GitHub too (but I used Bitbucket), but yesterday I learned how to do this process, and I will now tell you what I did:
- Create a GitHub account if you don't have one yet
- Fork the?openmultiplayer/homepage?repository to your own account; to do this, simply click the "Fork" button at the?top of the page
- Download a git client. I personally just downloaded the raw command line git?bash
- Pull your own fork of the?repository to a folder (cd [foldername] and git pull [address]). You can find out the?repository address by clicking the "Clone or download" green button in the page of your fork of the repository.
- Add your new files and modify the files to modify (in the case of languages, you need also to edit component/languages.js) in the folder
- Commit the changes (git commit -am "I changed x, y and z")
- Push the commit to your forked online repository?(git push [address])
- Sign the?Contributor License Agreement
- In the openmultiplayer/homepage repository page, click "New?pull request"
- Click "compare across forks"
- Click on the second repository drop down box, and select your fork
- Follow the remaining instructions to merge the changes