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
description: In this tutorial, you will learn about the how to create a GitHub repo by Online GUI interface.
8
8
---
9
9
10
-
In the previous post we spoke about commit, fork, clone, in this post we gonna deep dive into the terminology by creating a GitHub Repository from the Scratch.
11
-
Inorder to create a project and host, the repository is a place where you add all your program code files and other documentation.
10
+
In the previous post, we learned about commit, fork and clone. In this post, we are going to take a deep dive into the terminology by creating a GitHub Repository from scratch.
11
+
To create and host a project, the repository is a place where you add all your program code files and other documentation.
12
12
13
13
### Prerequisites
14
14
15
-
-1. You should have a Github account
16
-
-2.Should have a basic understanding of how Git works/ and Git running in your OS.
15
+
-1. You must have a GitHub account.
16
+
-2.You must also have a basic understanding of how Git works and ensure Git is installed and running on your operating system.
17
17
18
18
### How to create Github Repository
19
19
20
-
**Step 1:** Go to GitHub page, by default you will be in the Home page as shown below, Step 1 requires you to click on the ``+``Icon and from the drop down click on the ``New Repository``.
20
+
**Step 1:** Go to the GitHub website. By default, you will be on the Home page as shown below. Click on the ``+``icon in the top-right corner, and from the dropdown, select``New Repository``.
**Step 2:** Specify the name of the Project, make It public or private, for this tutorial you will make it public, Once the repository is gone private the project admin have to give permission or manually added other GitHub user to collaborate or make it visible. This is usual application in the organisation level. The next step check on the readme file, this allows you to create a ``readme.md`` file along with the repository creation. Then click on ``Create repository`` on the button below.
25
+
**Step 2:** Specify the name of the project and choose whether to make it public or private. For this tutorial, we’ll make it public.
26
+
27
+
Once a repository is made private, the project admin must manually grant permission to other GitHub users to collaborate or view it. This is a common practice at the organizational level.
28
+
29
+
Next, check the box to include a README file—this will automatically create a ``README.md`` file along with the repository. Finally, click on ``Create repository`` at the bottom.
You will now be able to see the uploaded resume in your repository.
128
132
129
133
### Watch the video Tutorial
130
134
131
135
<iframewidth="880"height="480"src="https://www.youtube.com/embed/XWjx-RjmhRM?list=PLrLTYhoDFx-kiuFiGQqVpYYZ56pIhUW63"title="How to create your first GitHub repository"frameborder="0"allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"referrerpolicy="strict-origin-when-cross-origin"allowfullscreen></iframe>
132
136
133
137
## Conclusion
134
138
135
-
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
139
+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags and attributes that define the structure and content of a web page. A HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>` and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
Step 2: Specify the Name of the Project, make It public or primate, check on the readme file. Then click on Create repository on the button below.
28
+
Step 2: Specify the name of your project, make it public or private, check the option to include a README file. Then click on Create repository on the button below.
Step 11: Initially when I was creating the repo I used Git add * to add all files in one go.
98
99
99
-
If you are committing for the first time adding a file in this way you may ask to enter your GitHub email id and username to proceed. The screenshot will be the same as below. and then while you enter the push command it will ask you browser prompt to sign in to Github.
100
+
If you are committing for the first time, Git may prompt you to enter your GitHub email id and username to proceed.
101
+
The screenshot below shows an example of the prompt. After entering these details, when you run the git push command, a browser window may open asking you to sign in to GitHub.
100
102
101
103
```html title="create a new repository on the command line"
102
104
git config --global user.email "Enter your github Email"
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page. An HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`. Understanding HTML syntax and structure is essential for creating web pages and applications.
117
+
In this tutorial, you learned about the syntax and structure of HTML. HTML syntax consists of elements, tags, and attributes that define the structure and content of a web page.
118
+
119
+
A HTML document follows a basic structure with elements like `<!DOCTYPE html>`, `<html>`, `<head>`, `<title>`, `<meta>`, and `<body>`.
120
+
Understanding HTML syntax and structure is essential for creating web pages and applications.
Copy file name to clipboardExpand all lines: docs/GitHub/GitHub-basics/index.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ description: Learn the fundamentals of Git and GitHub — forking, commits, pull
10
10
11
11
Welcome to the GitHub Basics section. This collection is designed to help beginners get comfortable with Git, GitHub workflows, and making their first open-source contributions.
12
12
13
-
Whether you're completely new or need a refresher, these guides walk you through practical steps with examples so you can start contributing confidently.
13
+
Whether you're completely new or need a refresher, these guides will walk you through practical steps with examples so you can start contributing confidently.
0 commit comments