Files
30-seconds-of-code/snippets/fetch-changes.md
Isabelle Viktoria Maciohsek 6507e3b2a8 Add fetch and view merged
2021-04-08 19:43:13 +03:00

17 lines
291 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.
```sh
git fetch
```
```sh
git fetch # Fetches the latest updates from the remote
```