Skip to content

Commit c49c12b

Browse files
Bushra RahmanBushra Rahman
authored andcommitted
fixed typos and phrasing
1 parent 2c1c20d commit c49c12b

File tree

1 file changed

+13
-8
lines changed

1 file changed

+13
-8
lines changed

docs/GitHub/GitHub-basics/github-repo-command-line.md

Lines changed: 13 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -11,26 +11,27 @@ HTML (Hypertext Markup Language) is the standard markup language for creating we
1111

1212
## Prerequisites
1313

14-
You should have a Github account 2. Should have a basic understanding of how Git works/ and Git running in your OS.
14+
1. You should have a GitHub account.
15+
2. You Should have a basic understanding of how Git works and ensure Git is installed and running on your operating system.
1516

1617

1718

1819
### How to create Github Repository
1920

20-
Step 1: Go to Git hub and create a new Repository.
21+
Step 1: Go to GitHub and create a new Repository.
2122

2223
<BrowserWindow url="https://github.com" bodyStyle={{padding: 0}}>
2324
[![GitHub](./assets/1-GitHub-repo.png)](https://github.com/sanjay-kv)
2425
</BrowserWindow>
2526
<br />
2627

27-
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.
2829

2930

3031
<BrowserWindow url="https://github.com/new" bodyStyle={{padding: 0}}>
3132
[![GitHub](./assets/2-repo-create-github.png)](https://github.com/sanjay-kv)
3233
</BrowserWindow>
33-
Upon creation you will get a screen like this below, the explanation of each elements is mentioned below.
34+
Once the repository is created, you'll see a screen similar to the one below, the explanation for each element is provided below.
3435

3536
```html title="create a new repository on the command line"
3637
echo "# demo-repo" >> README.md
@@ -76,7 +77,7 @@ When the above HTML code is rendered in a browser, it will display the following
7677
[![GitHub](./assets/14-git-command-add.png)](https://github.com/sanjay-kv)
7778
</BrowserWindow>
7879

79-
Now you can see the new file been added in your local system
80+
Now you can see the new file has been added to your local system
8081

8182
When the above HTML code is rendered in a browser, it will display the following content:
8283

@@ -88,15 +89,16 @@ When the above HTML code is rendered in a browser, it will display the following
8889

8990
When the above HTML code is rendered in a browser, it will display the following content:
9091
How to push Github Repository?
91-
Step 10: Once the work is done click on save and open cmd/ terminal
92+
Step 10: Once the work is done, click save and open cmd or Terminal
9293

9394
<BrowserWindow url="https://github.com/sanjay-kv/demo-repo" bodyStyle={{padding: 0}}>
9495
[![GitHub](./assets/16-remote-repo.png)](https://github.com/sanjay-kv)
9596
</BrowserWindow>
9697

9798
Step 11: Initially when I was creating the repo I used Git add * to add all files in one go.
9899

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

101103
```html title="create a new repository on the command line"
102104
git config --global user.email "Enter your github Email"
@@ -112,4 +114,7 @@ git config --global user.name "Github username"
112114

113115
## Conclusion
114116

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

0 commit comments

Comments
 (0)