From af707259c9eac4f48bf9441547ea88bb43ec7daa Mon Sep 17 00:00:00 2001 From: razorblade23 <81590614+razorblade23@users.noreply.github.com> Date: Mon, 17 Aug 2026 19:20:56 +0200 Subject: [PATCH 1/2] Added draft content to lesson --- curriculum/03-git-basics/01-introduction-to-git.md | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/curriculum/03-git-basics/01-introduction-to-git.md b/curriculum/03-git-basics/01-introduction-to-git.md index faf30d6..bc68522 100644 --- a/curriculum/03-git-basics/01-introduction-to-git.md +++ b/curriculum/03-git-basics/01-introduction-to-git.md @@ -7,4 +7,14 @@ lesson: true isDraft: true --- # Introduction to Git -## Work in progress \ No newline at end of file +## Introduction +First let's make things clear, **Git** and **Github** are two completly separate systems. We usually use both together and in this lesson we will talk about what is **Git** and what is **Github**. I the next lesson we will connect those two together and in the last lesson of the chapter, we will learn the basics of using **Git**. +## What is Git? +You can think of `git` as a really awesome save button, but instead of saving files like code editor does (one copy at a time), `git` tracks diffrences between the files. This allows us to version control our programs, revert back in time when we brake something and have a clean history of how the project evolved. Knowing how to use `git` is another essential skill to have as a developer. + +Git is local only software (program) that enables all of these cool features. It runs completly offline and does not contact any servers by default. +## What is Github? +Github is an online platform that enables hosting our `git`-s to remote servers, collaborate more easily with fellow developers and ultimately be your own porfolio. + +Github is under Microsoft domain which some developers don't like, so there are more alternatives like *gitlab*, *bitbucket*, etc ... For the purpose of this course we will be using Github. + From b40356052abd519acad6ba11d341d21a91bc9bf2 Mon Sep 17 00:00:00 2001 From: razorblade23 <81590614+razorblade23@users.noreply.github.com> Date: Tue, 18 Aug 2026 14:10:09 +0200 Subject: [PATCH 2/2] Fixed a typo in lesson template --- templates/lesson-template.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/lesson-template.md b/templates/lesson-template.md index 27b0ddd..0142bb8 100644 --- a/templates/lesson-template.md +++ b/templates/lesson-template.md @@ -1,5 +1,5 @@ --- -id: core-datatypes +id: title: sidebar_label: sidebar_position: