update REAME.md

This commit is contained in:
2024-03-09 10:07:06 +00:00
parent 2b3894a37b
commit b1c86c5239

View File

@@ -1,5 +1,15 @@
# git
## discard local changes
```bash
#all unstaged files in current working directory
git restore .
#specific file
git restore PATH/FILENAME
```
## change origin url
```bash