GitCheatSheet.org logo
Home / How To

Pull data from a remote repository

# Pull from "origin" remote
git pull

# Pull from "my-remote-name" remote
git pull my-remote-name

This command will try to fetch and then merge the remote branch into your local branch.