Reorganize snippets

This commit is contained in:
Angelos Chalaris
2023-05-03 21:19:02 +03:00
parent 7511813169
commit 5c913d20bd
1240 changed files with 992 additions and 0 deletions

20
git/s/fetch-changes.md Normal file
View File

@ -0,0 +1,20 @@
---
title: Fetch latest changes from remote
type: snippet
language: git
tags: [repository]
cover: playing-fetch
dateModified: 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
```