add content

This commit is contained in:
2024-10-21 16:03:38 +02:00
parent 9a5d3ca87d
commit 768bbce8b3
3 changed files with 24 additions and 6 deletions

View File

@@ -3,5 +3,9 @@
How to reset files from another branch.
```sh
# New way
git restore my/file.md
# Old way
git checkout origin/HEAD -- my/file.md
```