config level, clone level, PR level

This commit is contained in:
blinry 2021-01-07 17:35:08 +01:00
parent 8a86009e2f
commit 023a98cfae
8 changed files with 110 additions and 2 deletions
levels/intro

20
levels/intro/clone Normal file
View file

@ -0,0 +1,20 @@
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