-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ee1a33f
commit d23a8e7
Showing
1 changed file
with
50 additions
and
50 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,90 +2,90 @@ | |
|
||
<h2 align="center">⭐ STAR THIS REPOSITORY THIS WILL PAY OF MY WORK </h2> | ||
<br> | ||
<p>Let's learn the basic workflow of Contribution on Open Source Projects ! </p> | ||
<hr> | ||
<h3>Let's learn the basic workflow of Contribution on Open Source Projects ! </h3> | ||
<hr><br> | ||
<h2>PREREQUISITES :-</h2> | ||
<ul> | ||
<li>Github Account </li> | ||
<li>Laptop</li> | ||
<li>The Most Important Dedication 😆</li> | ||
</ul> | ||
<hr> | ||
<h2>Git Setup :- </h2> | ||
<li><h3>Github Account </h3</h3></li> | ||
<li><h3>Laptop</h3></li> | ||
<li><h3>The Most Important Dedication 😆</h3></li> | ||
</ul><br> | ||
<hr><br> | ||
<h2>Git Setup :- </h2><br> | ||
<ul> | ||
<li><a href="https://git-scm.com/downloads">Download Git</a> as per your OS. </li> | ||
<li>Install Git</li> | ||
<li>Open the Git Bash ( Right Click )</li> | ||
<li>Run the Commands</li> | ||
<li><h3><a href="https://git-scm.com/downloads">Download Git</a> as per your OS. </h3></li> | ||
<li><h3>Install Git</h3></li> | ||
<li><h3>Open the Git Bash ( Right Click )</h3></li> | ||
<li><h3>Run the Commands</h3></li> | ||
|
||
`$ git config --global user.name "Your Name"` | ||
|
||
`$ git config --global user.email [email protected]` | ||
|
||
`$ git config --list` | ||
|
||
<li>You Should see your entered name and email under `user.name` & `user.email`</li> | ||
<li><h3>You Should see your entered name and email under `user.name` & `user.email`</h3></li> | ||
|
||
</ul> | ||
</ul><br> | ||
<hr> | ||
|
||
<h2>Setting Project on Local System :- </h2> | ||
<br> | ||
<h2>Setting Project on Local System :- </h2><br> | ||
<ul> | ||
<li>Fork the Repository of Project</li><br> | ||
<img align="center" src="fork.png"><br> | ||
( You will see this on Top Right of Github Repository !) | ||
<li>Clone the Repository </li><br> | ||
<img align="center" src="clone.png"><br> | ||
( Click on the Green Code button and Copy the link `https://github.com/........` )</li> | ||
<li>Open Git bash where you want to clone the project ( Avoid On Desktop )</li> | ||
<li>Run Command</li> | ||
<li><h3>Fork the Repository of Project</h3></li><br> | ||
<img width="50%" align="center" src="fork.png"><br><br> | ||
( You will see this on Top Right of Github Repository !)<br><br> | ||
<li><h3>Clone the Repository </h3></li><br> | ||
<img width="50%" align="center" src="clone.png"><br><br> | ||
( Click on the Green Code button and Copy the link `https://github.com/........` )</h3></li><br><br> | ||
<li><h3>Open Git bash where you want to clone the project ( Avoid On Desktop )</h3></li> | ||
<li><h3>Run Command</h3></li> | ||
|
||
`git clone link` | ||
|
||
(In Place of link paste the link you copied) | ||
|
||
<li>Project Cloned in System</li> | ||
</ul> | ||
<hr> | ||
<li><h3>Project Cloned in System</h3></li> | ||
</ul><br> | ||
<hr><br> | ||
|
||
<h2>Using Vs-Code for Working on Project</h2> | ||
<h2>Using Vs-Code for Working on Project</h2><br> | ||
<ul> | ||
<img align="center" src="vscode.png"> | ||
<li>Don't Forget to Pull Before making Commit this will avoid merge conflicts</li> | ||
<li>After Making certain amount of changes you can save the changes by `CTRL + S` 😅</li> | ||
<li>Stage the changes</li> | ||
<img align="center" src="stagechanges.png"><br> | ||
<img width="50%" align="center" src="vscode.png"><br><br> | ||
<li><h3>Don't Forget to Pull Before making Commit this will avoid merge conflicts</h3></li> | ||
<li><h3>After Making certain amount of changes you can save the changes by `CTRL + S` 😅</h3></li> | ||
<li><h3>Stage the changes</h3></li><br> | ||
<img width="50%" align="center" src="stagechanges.png"><br> | ||
(Stage All Changes) | ||
<li>Commit Changes</li> | ||
<img align="center" src="commit.png"><br> | ||
<li><h3>Commit Changes</h3></li><br> | ||
<img width="50%" width="50%" align="center" src="commit.png"><br> | ||
(Commit Staged) | ||
<li>Push Changes</li> | ||
<img align="center" src="push.png"><br> | ||
<li><h3>Push Changes</h3></li><br> | ||
<img width="50%" align="center" src="push.png"><br> | ||
(Push) | ||
</ul> | ||
<hr> | ||
</ul><br> | ||
<hr><br> | ||
|
||
<h2>Creating Pull Request on Github</h2> | ||
<ul> | ||
<li>Go in Pull Request Section</li> | ||
<img align="center" src="pullrequest.png"> | ||
<li>Create New Pull Request</li> | ||
<img align="center" src="newPR.png"> | ||
<li>Create New Pull Request</li> | ||
<img align="center" src="createPR.png"> | ||
<li>Add Title, Description & Create Pull Request</li> | ||
<li>That's It You have Succesfully Created a Pull Request</li> | ||
<li><h3>Go in Pull Request Section</h3></li> | ||
<img width="50%" align="center" src="pullrequest.png"> | ||
<li><h3>Create New Pull Request</h3></li> | ||
<img width="50%" align="center" src="newPR.png"> | ||
<li><h3>Create New Pull Request</h3></li> | ||
<img width="50%" align="center" src="createPR.png"> | ||
<li><h3>Add Title, Description & Create Pull Request</h3></li> | ||
<li><h3>That's It You have Succesfully Created a Pull Request</h3></li> | ||
</ul> | ||
<hr> | ||
|
||
<h2 align="center">Connect with me 🤝🏻</h2> | ||
|
||
<div align="center"> | ||
|
||
<p> | ||
<h3> | ||
<a href="https://www.linkedin.com/in/rohan-k-2502/" ><img alt="LinkedIn" src="https://img.shields.io/badge/linkedin-%230077B5.svg?style=for-the-badge&logo=linkedin&logoColor=white"/></a> | ||
<a href="https://twitter.com/rohan_2502"><img alt="Twitter" src="https://img.shields.io/badge/rohan_2502-%231DA1F2.svg?style=for-the-badge&logo=Twitter&logoColor=white"/></a> | ||
<a href="https://twitter.com/rohan_2502"><img alt="Twitter" src="https://img.shields.io/badge/rohan_2502-%231DA1F2.svg?style=for-the-badge&logo=Twitter&logoColor=white"/></a> | ||
|
||
</p> | ||
</h3> | ||
|
||
</div> |