Skip to content

Commit addd1fc

Browse files
authored
Update intro-github.md
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.
1 parent a9ee609 commit addd1fc

File tree

1 file changed

+26
-23
lines changed

1 file changed

+26
-23
lines changed

docs/Technical/intro-github.md

Lines changed: 26 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,56 @@
11
---
22
id: intro-github
3-
title: Introduction of GitHub
3+
title: Getting Started with GitHub in 2025
44
sidebar_label: Introduction of GitHub #displays in sidebar
55
sidebar_position: 1
66
tags:
77
[
8-
GitHub,
8+
GitHub,git,version control
99
Introduction of GitHub,
10-
What is GitHub,
11-
Why learn GitHub,
10+
What is GitHub, open source
11+
Why learn GitHub,beginner guide
1212
How to use GitHub,
1313
]
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.
1615

1716
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.
1817

19-
:::note
18+
2019
Key Features of GitHub:
2120
GitHub will help you to control the version of the project on a large scale.
2221

2322
GitHub offers <a href="https://github.com/pricing">Premium</a> account for use, Premium users get unlimited Github Repo time, Storage etc.
2423

25-
:::
2624

2725
## How to start with GitHub?
2826

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+
3129
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.
3230

3331
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.
34-
:::
3532

3633
<BrowserWindow url="https://github.com/" bodyStyle={{padding: 0}}>
3734
[![Visual Studio Code](./assets/1-Introduction-to-github.png)](https://code.visualstudio.com/)
3835
</BrowserWindow>
3936

4037

4138

42-
## What is Git??
39+
## What is Git?
4340

4441
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.
4549

4650

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:**
5154

5255
| Keyword | Terminology | Description |
5356
| --- | --------------- | -------------------- |
@@ -62,19 +65,22 @@ So in the above example all the developer where able to work on different feautr
6265
| Commit | | Makes Changes |
6366
| Branch | a series of Linked commit | The recent commit is called Head. |
6467
| 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.|
6571
| | Git Command | Check this tutorial
6672

67-
:::
73+
6874

6975
## Why Learn GitHub?
7076

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.
7278

7379
![Git Structure](./assets/2-git-strucutre.png)
7480

7581

76-
:::info
77-
1. Basic GitHub Keywords::
82+
83+
1. Basic GitHub Keywords:
7884

7985
| Category | Description |
8086
| --- | -------------------- |
@@ -90,9 +96,6 @@ GitHub Simplfy all the command line interface of Git and make it more GUI friend
9096

9197
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.
9298

93-
:::
94-
95-
9699
### Watch the video Tutorial
97100
<iframe width="853" height="480" src="https://www.youtube.com/embed/GrTV59Y84S8?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63" title="How to start with GitHub in 2024 | Beginner&#39;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>
98101

0 commit comments

Comments
 (0)