pull git repository to local machine code example
Example 1: download github repository
git clone https://github.com/username/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