Skip to content

Latest commit

 

History

History
20 lines (12 loc) · 728 Bytes

contributing.md

File metadata and controls

20 lines (12 loc) · 728 Bytes

How to start contribute

  • clone the repo by opening gitbash in the desired folder and running the command

git clone https://github.com/karimkohel/potato.git

  • check the projects section of the repo on github to see where we are on development
  • check your conda env is working and install libraries in said env with pip install -r requirements.txt
  • after editing a file you should always commit when you finish a specific edit

git add .

git commit -m "your msg"

  • remember to push after a work session for other contributers to work on the updated version

git push

  • and when starting to work again on the local repo always pull in changes that other people did while you were away with

git pull