oh-my-git/levels/it_IT/unused/clone
2021-09-08 17:00:51 +02:00

21 lines
288 B
Plaintext

title = Cloning a repo
cards = clone commit-auto pull push
[description]
Get your friend's repo using clone, change something, push it back.
[setup]
rm -rf .git
[setup friend]
echo hi > file
git add .
git commit -m "Initial commit"
[win friend]
test "$(git show main:file)" != hi