- This is the Unity Frontend for ByteBeast Game -- This is work in progress
for better idea of the project look this: https://miro.com/welcomeonboard/Tm13OHBCa0VtR1MwaWFrcnRWM1lscUN3RExLclc0cEMyem1ia3lDQ1p2WmtIbnYzdGF4NGQ2aW5GV2tleHFKQXwzNDU4NzY0NTk5MTAzMzA0OTEwfDI=?share_link_id=866895323732
We welcome contributions to the ByteBeasts Frontend project! To get started, please follow these guidelines:
- Navigate to the ByteBeasts Frontend repository.
- Click on the "Fork" button in the top-right corner of the page to create your own copy of the repository.
- Open your terminal or command prompt.
- Clone your fork using the following command:
git clone https://github.com/your-username/ByteBeastsFrontend.git
- Navigate into the cloned directory:
cd bytebeasts-frontend
Create a new branch for your work. It’s a good practice to name the branch according to the issue you’re working on:
git checkout -b feat/issue-description
Make the necessary changes to the codebase.
Test your changes to ensure everything works as expected.
- Add the changes to the staging area:
git add .
- Commit your changes with a meaningful commit message:
Example:
git commit -m "feat: action + description"
git commit -m "feat: add new character: Tom"
- Add the original repository as a remote to keep your fork up to date:
git remote add upstream https://github.com/ByteBuildersLabs/ByteBeastsFrontend.git
- Fetch the latest changes from the original repository:
git fetch upstream
- Rebase your branch onto the updated main branch to incorporate the latest changes:
git rebase upstream/main
Push your changes to your fork:
git push origin feat/issue-number-description
- Go to the Pull Requests page on GitHub.
- Click the "New Pull Request" button.
- Select your branch and the base branch you want to merge into.
- Add a description of your changes and submit the pull request.
Thank you for contributing to ByteBeasts Frontend! If you have any questions, feel free to reach out to the maintainers.
Luis |
JuanDi |