deleted the .po level files and added dir italian levels in dir levels and made some changes to the scripts

This commit is contained in:
Luca Canali 2022-09-13 14:40:40 +02:00
parent e802402b48
commit af776bd3c2
210 changed files with 3381 additions and 2243 deletions
levels/en/unused

26
levels/en/unused/commit-a Normal file
View file

@ -0,0 +1,26 @@
title = Make a commit, but faster!
cards = add reset checkout commit commit-a
[description]
There is a time-saving trick, where instead of a plain `git commit`, you can use
git commit -a
This will automatically add all changes you made to local files! Very convenient.
[setup]
echo a > a
echo b > b
echo c > c
git add .
git commit -m "Initial commit"
echo x > a
echo x > b
echo x > c
[win]
# Make a commit where all files contain "x".
test "$(git show main:a)" = x && test "$(git show main:b)" = x && test "$(git show main:c)" = x