Skip to content

Commit cf70bef

Browse files
committed
fixed the images not showing on README.md
1 parent 79aa013 commit cf70bef

File tree

1 file changed

+17
-17
lines changed

1 file changed

+17
-17
lines changed

README.md

+17-17
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ To earn your **`Hacktoberfest T-Shirt`** or tree reward, you must register and m
6363
</ul><br>
6464
<hr>
6565

66-
### 2. You should have an account on GitHub if you you dont't have an account then simply make it.
66+
### 2. You should have an account on GitHub if you you don't have an account then simply make it.
6767

6868
### 3. You will need a text editor accoring to your comfort , I prefer Vs code
6969

@@ -88,35 +88,35 @@ To earn your **`Hacktoberfest T-Shirt`** or tree reward, you must register and m
8888
<ul>
8989
<li>Fork this Repository or Project</li>
9090
<li> This will create a copy of this repository in your account.</li>
91-
<img width="50%" align="center" src="fork.png"><br><br>
91+
<img width="50%" align="center" src="images/fork.png"><br><br>
9292
<li>Copy the link of the Repository</li><br>
93-
<img width="50%" align="center" src="clone.png"><br><br>
93+
<img width="50%" align="center" src="images/clone.png"><br><br>
9494
<li>Open Git bash where you want to clone the project and clone it </li>
9595
<li>Clone it</li>
9696
<li>Run Command and Hit Enter <br>
9797

9898
```
9999
git clone <the link you just copied>
100100
```
101-
<img width="70%" align="center" src="gitclone.png"><br><br>
101+
<img width="70%" align="center" src="images/gitclone.png"><br><br>
102102

103103
In this case it is <br> ``` git clone https://github.com/arpit456jain/Getting-Started-with-open-source.git ```
104104
</li>
105105
<li> After you hit enter you will notice that some downloading will start. It's actually cloning of repo form your GitHub repository to your local system.</li><br>
106-
<img width="60%" align="center" src="clonning.png">
106+
<img width="60%" align="center" src="images/clonning.png">
107107
<li> After this you will notice a folder is created with the name of repository </li><br>
108-
<img width="15%" align="center" src="folder.png"><br><br>
108+
<img width="15%" align="center" src="images/folder.png"><br><br>
109109
<li>Then just close the Git bash and open this folder in your preferred text editor...</li><br>
110110
<li>Here is an example in VS Code. </li><br>
111-
<img width="100%" align="center" src="vscode.png"><br><br>
111+
<img width="100%" align="center" src="images/vscode.png"><br><br>
112112
</ul>
113113

114114
### 5. Now Make necessary changes and commit them , lets say you have to add your name in readme , you already set up the project in local system . Now before starting your work always rembember to pull latest change from the main Repo.
115115

116116
<ul>
117117

118118
<li>Fetch And Merge </li><br>
119-
<img width="50%" align="center" src="fetch.png"><br>
119+
<img width="50%" align="center" src="images/fetch.png"><br>
120120
<br>
121121
<li>Pull these changes in your local system</li>
122122
<br>
@@ -130,7 +130,7 @@ To earn your **`Hacktoberfest T-Shirt`** or tree reward, you must register and m
130130
2. Reset the main branch of origin to upstream<br>
131131
git reset --hard upstream/main<br><br>
132132

133-
<img width="50%" align="center" src="pullorigin.png"><br><br>
133+
<img width="50%" align="center" src="images/pullorigin.png"><br><br>
134134

135135
<li> make a new branch and then make the changes , then commit them. make sure to commit to the new branch <br>
136136
<b>Never commit in master branch</b> </li>
@@ -152,13 +152,13 @@ git push origin new_branch_name
152152
<ul>
153153
<li>when you push the changes you will notice a new branch will be created on GitHub and there will be a green button for creating pull request. Click on it.</li>
154154
<br>
155-
<img width="80%" align="center" src="createPR.png"><br><br>
155+
<img width="80%" align="center" src="images/createPR.png"><br><br>
156156
<li>After this a new page will be open like this</li>
157-
<img width="80%" align="center" src="PR.png"><br><br>
157+
<img width="80%" align="center" src="images/PR.png"><br><br>
158158
<li>Now add a title and description of your PR and click on create pull request.</li>
159159
<br>
160160
<li>Congrats 🎉 your Pull Request is created</li><br>
161-
<img width="80%" align="center" src="PRcreated.png"><br><br>
161+
<img width="80%" align="center" src="images/PRcreated.png"><br><br>
162162
</ul>
163163

164164
---
@@ -167,7 +167,7 @@ git push origin new_branch_name
167167

168168
### 1. Updates were rejected or failed to push some refs.
169169

170-
<img width="80%" align="center" src="error1.png"><br>
170+
<img width="80%" align="center" src="images/error1.png"><br>
171171

172172
<p> This is most common error you will find and its pretty easy to solve . </p>
173173
<br>
@@ -184,7 +184,7 @@ Note : if your repo is a forked one and its some commit behind then first fetch
184184

185185
### 2. Unable to detect identity.
186186

187-
<img width="80%" align="center" src="Error2.png"><br>
187+
<img width="80%" align="center" src="images/Error2.png"><br>
188188

189189
<p> Its pretty easy to solve . </p>
190190
<br>
@@ -200,7 +200,7 @@ git config --global user.email [email protected]
200200

201201
### 3. Remote origin already exists.
202202

203-
<img width="80%" align="center" src="Error3.png"><br>
203+
<img width="80%" align="center" src="images/Error3.png"><br>
204204

205205
<p>It is easy to solve<p>
206206
<br>
@@ -212,7 +212,7 @@ git remote set-url origin <repository url>
212212

213213
### 3. Refusing to merge unrelated histories.
214214

215-
<img width="80%" align="center" src="Error4.png"><br>
215+
<img width="80%" align="center" src="images/Error4.png"><br>
216216

217217
<p>This error appears when some of your ambiguous actions confuse Git on how to function further.<p>
218218
<br>
@@ -224,7 +224,7 @@ git pull origin master –allow-unrelated-histories
224224

225225
### 3. OpenSSL SSL_read: Connection was reset.
226226

227-
<img width="80%" align="center" src="Error5.png"><br>
227+
<img width="80%" align="center" src="images/Error5.png"><br>
228228

229229
<p>This is the SSL certificate of the server that has not been signed by a third party, so an error is reported.<p>
230230
<br>

0 commit comments

Comments
 (0)