Skip to content

Latest commit

 

History

History
41 lines (33 loc) · 1.13 KB

File metadata and controls

41 lines (33 loc) · 1.13 KB

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
  1. Make a new branch and switch to it:
git checkout -b <your_branch_name>
  1. Make your changes, for example:
git rm requirements.txt
git add .
git commit -m "Removed requirements.txt"
  1. 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
  1. 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