Git Bash and how to get repository with it

Hi there can someone explain me how to get a repository from Git Hub and open it in Processing using the application Git Bash, i dont find the answer online. Thanks for the answer!

In git bash, navigate to where you want the repository on your local machine using cd (change directory). Use git clone like:

git clone https://github.com/username/reponame.git

(you can get the url on the repository page if you click on the green clone button top right of the page)

Then open the processing ide. File>Open navigate to where you to where you cloned the project and select a .pde file. Processing should be smart enough to open all .pde files in the project.

Dan Shiffman has a good video series on how to use git and github which covers using things like clone and branch.