Files
30-seconds-of-code/snippets/fetch-changes.md
Isabelle Viktoria Maciohsek ee28929328 Make expertise a field
2022-03-01 20:23:46 +02:00

20 lines
384 B
Markdown

---
title: Fetch latest changes from remote
tags: repository
expertise: beginner
firstSeen: 2021-04-08T19:43:13+03:00
lastUpdated: 2021-04-13T21:10:59+03:00
---
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
```