Command
git pull
Explanation
git pull is used to fetch from and integrate with another repository. It fetches from and integrates with another repository.
Examples
Pull current branch
git pull
Pull specific branch
git pull origin main
Pull with rebase instead of merge
git pull --rebase