Related
Pull from Remote
git
Download and integrate changes from a remote repository into your current local branch, combining fetch and merge in one command
Clone Repository
git
Clone an existing Git repository from a remote server to your local machine, creating a complete copy with full history
Push Tags to Remote
git
Push local tags to a remote repository so others can access them
Command
git fetchExplanation
git fetch is used to download objects and refs from another repository. It downloads the objects and refs from another repository.
Examples
Fetch all branches from origin
git fetchFetch specific branch
git fetch origin main