Post

Git Pull Cheatsheat

The git pull command is used to update your local repository with changes from a remote repository. It performs a git fetch followed by a git merge. Here’s a basic usage:

1
git pull <remote> <branch>

for example

1
git pull origin main
This post is licensed under CC BY 4.0 by the author.

Comments powered by Disqus.