23 lines
482 B
Markdown
23 lines
482 B
Markdown
---
|
|
title: Discard uncommitted changes
|
|
tags: branch
|
|
expertise: intermediate
|
|
author: maciv
|
|
cover: blog_images/arrays.jpg
|
|
firstSeen: 2021-04-06T11:11:08+03:00
|
|
lastUpdated: 2021-04-13T21:10:59+03:00
|
|
---
|
|
|
|
Discards all uncommitted changes to the current branch.
|
|
|
|
- Use `git reset --hard HEAD` to reset the local directory to match the latest commit and discard all unstaged changes.
|
|
|
|
```shell
|
|
git reset --hard HEAD
|
|
```
|
|
|
|
```shell
|
|
git reset --hard HEAD
|
|
# Discards all unstaged changes
|
|
```
|