First version of an "index" chapter

This commit is contained in:
blinry 2021-01-05 12:46:07 +01:00
parent 21d8366dbb
commit e754671b88
12 changed files with 216 additions and 6 deletions
levels/index

22
levels/index/reset Normal file
View file

@ -0,0 +1,22 @@
title = Resetting files in the index
cards = add reset
[description]
If you already have changes in the index, but want to reset them, you can use `git reset`!
[setup]
echo a > a
echo b > b
echo c > c
git add .
git commit -m "Initial commit"
echo x > a
echo x > b
git add .
[win]
# Reset all changes in files in the index!
test "$(git diff --cached --name-only | wc -l)" -eq 0