Files
30-seconds-of-code/snippets/fetch-changes.md
2021-04-13 21:10:59 +03:00

17 lines
297 B
Markdown

---
title: Fetch latest changes from remote
tags: repository,beginner
---
Fetches the latest changes from the remote.
- Use `git fetch` to get the latest changes from the remote, without applying them.
```shell
git fetch
```
```shell
git fetch # Fetches the latest updates from the remote
```