how to pull from github to local code example
Example 1: how to pull git repository from github
git clone [email protected]:username/repo.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