To contribute your mods to this repository, you can use either the GitHub web interface or your local machine.
- Fork the Repository: Click on the "Fork" button at the top right corner of this repository to create a copy in your own GitHub account.
- Navigate to Your Fork: Go to your forked repository on GitHub.
- Create a New File or Edit an Existing File: Click on "Add file" and select "Create new file" or navigate to the file you want to edit and click the pencil icon to edit it.
- Add Your Mod: Add your mod code in the editor.
- Commit Changes: Scroll down to the "Commit new file" or "Commit changes" section, add a commit message, and click "Commit new file" or "Commit changes".
- Create a Pull Request: Go back to the original repository and click on the "New Pull Request" button. Select your fork and branch, then click "Create Pull Request". Add a description and submit the pull request.
- Fork the Repository: Click on the "Fork" button at the top right corner of this repository to create a copy in your own GitHub account.
- Clone Your Fork: Clone your fork to your local machine using:
git clone https://github.com/<your-username>/bmods.git
- Create a New Branch: Create a new branch for your mod:
cd bmods git checkout -b my-new-mod
- Add Your Mod: Add your mod files to the appropriate directory (e.g.,
Actions
orThemes
). - Commit Your Changes: Commit your changes with a descriptive message:
git add . git commit -m "Add my new mod"
- Push to Your Fork: Push your branch to your forked repository:
git push origin my-new-mod
- Create a Pull Request: Go to the original repository and click on the "New Pull Request" button. Select your branch and create the pull request.