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:
-
Create a fork of
xpuz -
Clone your fork locally on your computer (requires git):
git clone https://github.com/<your_name>/xpuz.git cd xpuz -
Make a new branch and switch to it:
git checkout -b <your_branch_name> -
Make your changes, for example:
git rm requirements.txt git add . git commit -m "Removed requirements.txt" -
Push the changes you have made to your repo:
Or, you can trygit push --set-upstream origin <your_branch_name>git push remote origin -
Create a pull request:
- Navigate to your repo's main page
- Go to pull requests
- Set the "compare" option to your new branch name
- Add some information and submit your changes