git pull from repository to local code example
Example: 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
# 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