Download profile from github

You can load profiles from github. First, go to the profile tab and click Load newprofiles from github

Next, click Show info

You can see info about profile, and if you want to add it, click Accept

Upload profile to github

  1. Fork the repository : Go to https://github.com/cesbo/senta-streamer-profiles and click on the "Fork" button in the top right corner of the page. This will create a copy of the repository in your GitHub account.
  2. Clone your fork : Open your terminal (or Git Bash on Windows) and execute the command git clone https://github.com/your_username/senta-streamer-profiles, replacing "your_username" with your GitHub username.
  3. Create a new branch : Navigate into the cloned repository using the command cd senta-streamer-profiles, then create a new branch using git checkout -b add_profile, where "add_profile" is the name of your branch.
  4. Add your file : Place your profile file into the /profiles directory in the cloned repository.
  5. Add the file to staging and commit : Execute the following commands in your terminal:
terminal
git add profiles/your_file_name
git commit -m "Added profile: %your_file_name%"

Replace "your_file_name" with the name of your file.

  1. Push your changes to your GitHub repository : Execute the command git push origin add_profile, where "add_profile" is the name of your branch.
  2. Open a Pull Request (PR) : After pushing your changes, go to your forked repository's page on GitHub. There you should see a "Compare & pull request" button for your new branch. Click on it.
  3. Create a Pull Request : Review the changes you want to make, ensure everything is correct, and then click on the "Create pull request" button.
  4. Wait for review and merge : Other contributors to the project may review your Pull Request, leave comments, or request changes. Once your PR is reviewed and approved, one of the project maintainers will merge your branch into the main branch.

That's it! Your profile file should now be added to the public repository.