Skip to content
Val N edited this page Feb 29, 2024 · 2 revisions

Welcome to the python-ipware wiki!

To raise a PR:

  1. Clone the repo on your system
git clone git@github.com:un33k/python-ipware.git
  1. Make a branch for your fix or enhancement or new feature
git checkout ci; git merge main; git checkout -b feat/<somename>
  1. Finish your code and test
bash test.sh
  1. Verify syntax changes
bash format.sh
  1. Commit your code, and push
git add .; git commit -am "reason of commit"; git push
  1. Go to GitHub and raise a PR against the CI branch
Clone this wiki locally