mirror of
https://github.com/git-learning-game/oh-my-git.git
synced 2024-11-20 16:20:18 +01:00
Add a high-level level about remotes
This commit is contained in:
parent
f78571ec1b
commit
bacadd49ae
5 changed files with 34 additions and 4 deletions
31
levels/high-level/first-remote
Normal file
31
levels/high-level/first-remote
Normal file
|
@ -0,0 +1,31 @@
|
||||||
|
[description]
|
||||||
|
|
||||||
|
A friend has asked you to help with an essay about hobbies! She has already started to write a list, started tracking it in a Git repository. You can get a copy by typing
|
||||||
|
|
||||||
|
git pull friend main
|
||||||
|
|
||||||
|
Help her by adding at least two more items to the list! When you're done, commit your result and use
|
||||||
|
|
||||||
|
git push friend main
|
||||||
|
|
||||||
|
to send it to her copy of the repository!
|
||||||
|
|
||||||
|
[congrats]
|
||||||
|
|
||||||
|
"Thanks, these are some really nice hobbies! Hope we can do that together soon!"
|
||||||
|
|
||||||
|
[setup]
|
||||||
|
|
||||||
|
[setup friend]
|
||||||
|
|
||||||
|
echo "~ Best hobbies ~
|
||||||
|
|
||||||
|
- Collecting stamps
|
||||||
|
- Looking at clouds" >> hobbies.txt
|
||||||
|
|
||||||
|
git add .
|
||||||
|
git commit -m "Initial list (I definitely need more)"
|
||||||
|
|
||||||
|
[win friend]
|
||||||
|
|
||||||
|
test "$(git show HEAD:hobbies.txt |wc -l)" -ge 6
|
|
@ -1,5 +1,7 @@
|
||||||
[description]
|
[description]
|
||||||
|
|
||||||
|
(This chapter is not a complete introduction to Git yet, but it will explain some of the basic concepts to you.)
|
||||||
|
|
||||||
So you've been working on an essay about goldfish. You can look at the backup copies you made by clicking on them!
|
So you've been working on an essay about goldfish. You can look at the backup copies you made by clicking on them!
|
||||||
|
|
||||||
But look - something went wrong in the latest version of the file! Maybe it has been infected with a vowel-eating virus?
|
But look - something went wrong in the latest version of the file! Maybe it has been infected with a vowel-eating virus?
|
||||||
|
|
|
@ -5,11 +5,8 @@ Delete all objects in this repository using git commands only!
|
||||||
Useful commands:
|
Useful commands:
|
||||||
|
|
||||||
git prune
|
git prune
|
||||||
git fsck
|
|
||||||
git reflog expire
|
git reflog expire
|
||||||
|
|
||||||
Note: I'm not sure how to beat this level. :D
|
|
||||||
|
|
||||||
[setup]
|
[setup]
|
||||||
|
|
||||||
echo foo > foo
|
echo foo > foo
|
||||||
|
|
|
@ -2,7 +2,7 @@
|
||||||
|
|
||||||
This is prototype #1 for the Git learning game by @bleeptrack and @blinry. Thanks for checking it out! <3
|
This is prototype #1 for the Git learning game by @bleeptrack and @blinry. Thanks for checking it out! <3
|
||||||
|
|
||||||
You can interact with the repository on the right by typing Bash commands in the terminal below! The visualization will show you its internal status.
|
You can interact with the repository labelled "yours" by typing Bash commands in the terminal below! The visualization will show you its internal status.
|
||||||
|
|
||||||
Let's get started by initializing an empty Git repository in the current directory by typing:
|
Let's get started by initializing an empty Git repository in the current directory by typing:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue