mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-03 19:04:40 +01:00
22 lines
410 B
Text
22 lines
410 B
Text
|
title = Checking out files from the index
|
||
|
cards = add reset checkout
|
||
|
|
||
|
[description]
|
||
|
|
||
|
So you've made changes to your files, but you decide that you don't want to keep them! You can use `git checkout` for that!
|
||
|
|
||
|
[setup]
|
||
|
|
||
|
echo a > a
|
||
|
echo b > b
|
||
|
echo c > c
|
||
|
git add .
|
||
|
git commit -m "Initial commit"
|
||
|
echo x > a
|
||
|
echo x > b
|
||
|
|
||
|
[win]
|
||
|
|
||
|
# Remove all changes in your local files!
|
||
|
test "$(git diff --name-only | wc -l)" -eq 0
|