17 lines
291 B
Markdown
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
|
|
```
|