Skip to content

Contributing to xpuzยค

Thanks for deciding to contribute to xpuz. Please read below for information on how to make a pull request.

When contributing to this project, you must agree that you have authored 100% of the content, that you have the necessary rights to the content and that the content you contribute may be provided under the project licence.

Then, follow these steps:

  1. Create a fork of xpuz

  2. Clone your fork locally on your computer (requires git):

    git clone https://github.com/<your_name>/xpuz.git
    cd xpuz
    

  3. Make a new branch and switch to it:

    git checkout -b <your_branch_name>
    

  4. Make your changes, for example:

    git rm requirements.txt
    git add .
    git commit -m "Removed requirements.txt"
    

  5. Push the changes you have made to your repo:

    git push --set-upstream origin <your_branch_name>
    
    Or, you can try
    git push remote origin
    

  6. Create a pull request:

    1. Navigate to your repo's main page
    2. Go to pull requests
    3. Set the "compare" option to your new branch name
    4. Add some information and submit your changes