Oh-my-Git

Found a nice interactive game for learning git:
https://blinry.itch.io/oh-my-git

Sometimes for me it was not clear what’s the mission, but still quiet nice for beginning to get to known git.
Useful commands for commits:

go to prevoius commit: git checkout HEAD^
go back two commits: git checkout HEAD~2

Useful commands for branches:

create a branch called name at current location: git branch name
delete branch: git branch -D
go to branch called name: git checkout name

Und noch ein weiteres git-Spiel:
https://t3n.de/news/interaktive-tutorial-dafuer-git-1326039/?utm_source=rss&utm_medium=feed&utm_campaign=t3n

You may also like...

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.