how to pull github repo to local machine code example
Example 1: github clone to local folder
cd folder/to/clone-into/
git clone https://github.com/your-repo/project-name.git
Example 2: pull from github to local
# if repo already exists in local
git checkout develop
git pull origin develop
# To pull new repo from remote
git init
git pull repo-link