Skip to content

Latest commit

 

History

History
executable file
·
35 lines (32 loc) · 1.16 KB

README.md

File metadata and controls

executable file
·
35 lines (32 loc) · 1.16 KB

LeakPro

Tests Last Commit License Open Issues Open PRs Downloads

To install

  1. Clone repository git clone https://github.com/aidotse/LeakPro.git
  2. Navigate to the project repo cd Leakpro
  3. Install with pip pip install -e .

To Contribute

  1. Ensure local repo is up-to-date: git fetch origin
  2. Create feature branch git checkout -b my-feature-branch
  3. Make changes and commit: git add . git commit -m "Added new feature"
  4. Ensure the local main is up to date: git checkout main git pull origin main
  5. Merge main onto feature branch git checkout my-feature-branch git merge main
  6. Resolve conflicts, add and commit.
  7. Push your update to the remore repository git push origin my-feature-branch
  8. Open pull request