You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The previous version of the introduction article had an illogical flow for new learners, jumping between concepts without building a proper foundation. SEO elements were also minimal.
This commit completely restructures the content to be more beginner-friendly and impactful:
- Introduces the concept of Version Control first to establish the "why".
- Clearly distinguishes between Git (the tool) and GitHub (the platform).
- Improves SEO with a keyword-rich title, meta description, and tags.
- Rewrites core concepts like 'Repository' and 'Pull Request' for better clarity.
- Organizes the content with a logical heading structure.
Copy file name to clipboardExpand all lines: docs/Technical/intro-github.md
+26-23Lines changed: 26 additions & 23 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,53 +1,56 @@
1
1
---
2
2
id: intro-github
3
-
title: Introduction of GitHub
3
+
title: Getting Started with GitHub in 2025
4
4
sidebar_label: Introduction of GitHub #displays in sidebar
5
5
sidebar_position: 1
6
6
tags:
7
7
[
8
-
GitHub,
8
+
GitHub,git,version control
9
9
Introduction of GitHub,
10
-
What is GitHub,
11
-
Why learn GitHub,
10
+
What is GitHub, open source
11
+
Why learn GitHub,beginner guide
12
12
How to use GitHub,
13
13
]
14
-
description: In this tutorial, you will learn about GitHub, its importance, what is GitHub from Scratch, how to use GitHub, steps to start using GitHub, and more.
15
-
---
14
+
description: New to GitHub? This beginner's guide explains what Git and GitHub are, why they're essential for developers, and how to start your open-source journey. Learn key concepts like repositories, commits, and pull requests.
16
15
17
16
GitHub is a web-based platform used for version control and collaboration. It allows developers to work together on projects from anywhere in the world. GitHub is built on top of Git, a distributed version control system created by Linus Torvalds in 2005.
18
17
19
-
:::note
18
+
20
19
Key Features of GitHub:
21
20
GitHub will help you to control the version of the project on a large scale.
22
21
23
22
GitHub offers <a href="https://github.com/pricing">Premium</a> account for use, Premium users get unlimited Github Repo time, Storage etc.
24
23
25
-
:::
26
24
27
25
## How to start with GitHub?
28
26
29
-
Whenever you create something exciting or something new on your own, you always want to show it to others. As programmers, we also want to show our projects and codes to others, but how? So GitHub is the solution, it let's people to collaborate and scale the projects all on cloud. Some other example of simillar platform are , Bitbucket, GitLab, Beanstalk, etc. Many of them give you the facility to work on your code together as a team. Currently, Github is more popular than other above-listed platforms for hosting your code.
30
-
:::info
27
+
Whenever you create something exciting or something new on your own, you always want to show it to others. As programmers, we also want to show our projects and codes to others, but how? So GitHub is the solution, it lets people collaborate and scale the projects all on cloud. Some other example of simillar platform are , Bitbucket, GitLab, Beanstalk, etc. Many of them give you the facility to work on your code together as a team. Currently, Github is more popular than other above-listed platforms for hosting your code.
28
+
31
29
In the picture below you could see Developer 1, Developer 2... are working on the same project , lets say they are trying to build a amazon website, developer 1 handles the Mens shopping section, Developer 2 deals with Womens section, Developer 3 works on the login feature.
32
30
33
31
So each indivituals works on different feature from the copy of the central repository, once the development is done they push changes to the **remote repository** (central repo as per picture). Once **code review** happens and good to go, the senior developer will merge the code to the central repository so all the feature will be live on production.
[](https://code.visualstudio.com/)
38
35
</BrowserWindow>
39
36
40
37
41
38
42
-
## What is Git??
39
+
## What is Git?
43
40
44
41
So in the above example all the developer where able to work on different feautre simulatneaulsy because of the git. For uploading your project to your Github account, you need to install Git first. In other words, Git helps to do this version management of the files and coordinating work among the diverse team in the software development phase. Git is an open-source project and developed in 2005 by Linus Torvalds and Junior.
42
+
Git vs. GitHub: What's the Difference?
43
+
This is the most common point of confusion for beginners. Let's make it simple.
44
+
45
+
Git: The Local Tool 💻
46
+
Git is the version control system itself. It's a command-line tool you install on your computer. Git is the engine that tracks changes, manages different versions (called "branches"), and handles the history of your project. It was created by Linus Torvalds, the same creator of the Linux operating system.
47
+
48
+
It's Distributed: Every developer has a full copy of the project's history on their local machine. You can work offline, make changes, and commit them.
45
49
46
50
47
-
48
-
:::info
49
-
1.**What is Version control System?**: To understand the version control system, let me give you one example; sometimes, you wish you have a record that contains all the changes you made in your code or your project. The version control systems are software tools that record all of your changes in the files. It is like a database of changes. Git is a version control system that most developers prefer to use. We will see how you can upload your code on Github using Git. With VCS you can track the branch, who made changes at what time, line of code added, retrive the previous version of changes.
50
-
2. Basic Git Terminology::
51
+
52
+
1.**What is Version control System?**: To understand the version control system, let me give you one example; sometimes, you wish you have a record that contains all the changes you made in your code or your project. The version control systems are software tools that record all of your changes in the files. It is like a database of changes. Git is a version control system that most developers prefer to use. We will see how you can upload your code on Github using Git. With VCS you can track the branch, who made changes at what time, line of code added, retrive the previous version of changes.
53
+
2. **Basic Git Terminology:**
51
54
52
55
| Keyword | Terminology | Description |
53
56
| --- | --------------- | -------------------- |
@@ -62,19 +65,22 @@ So in the above example all the developer where able to work on different feautr
62
65
| Commit | | Makes Changes |
63
66
| Branch | a series of Linked commit | The recent commit is called Head. |
64
67
| Remote | | reference to other git repo |
68
+
| Pull Request: A proposal to merge a set of changes from one branch into another.|
69
+
| Actions: Automate your workflow, such as building, testing, and deploying your code right from GitHub.|
70
+
|Fork: A personal copy of another user's repository.|
65
71
| | Git Command | Check this tutorial
66
72
67
-
:::
73
+
68
74
69
75
## Why Learn GitHub?
70
76
71
-
GitHub Simplfy all the command line interface of Git and make it more GUI friendly. GitHub has builds above of git. Here want we do is staging the files and doing the commit, You can clone the entire repository and create a branch and commit to that branch ask the main developer to merge the branch. when you clone in reality you are creating a copy of the real code/repository in your local environment.
77
+
GitHub Simplfy all the command line interface of Git and make it more GUI friendly. GitHub is built on top of Git. Here want we do is staging the files and doing the commit, You can clone the entire repository and create a branch and commit to that branch ask the main developer to merge the branch. when you clone in reality you are creating a copy of the real code/repository in your local environment.
72
78
73
79

74
80
75
81
76
-
:::info
77
-
1. Basic GitHub Keywords::
82
+
83
+
1. Basic GitHub Keywords:
78
84
79
85
| Category | Description |
80
86
| --- | -------------------- |
@@ -90,9 +96,6 @@ GitHub Simplfy all the command line interface of Git and make it more GUI friend
90
96
91
97
The fork is a personal copy of the repo which is already present or uploaded in GitHub by a different user. Once you fork and make changes to the repository the changes will happen to your forked repo, not the real one.
92
98
93
-
:::
94
-
95
-
96
99
### Watch the video Tutorial
97
100
<iframe width="853" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner's Guide" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" referrerpolicy="strict-origin-when-cross-origin" allowfullscreen></iframe>
0 commit comments