Skip to content

Latest commit

 

History

History
58 lines (30 loc) · 2.13 KB

README.md

File metadata and controls

58 lines (30 loc) · 2.13 KB

Welcome to the NAMES PROJECT 🙅‍♂️

This helps you learn how to make YOUR FIRST PULL REQUEST (Contribution) in simple steps.

  1. Download and install GIT from this website https://git-scm.com/downloads

  2. Fork this Repository (Folder is called Repository in GIT language).

image

The meaning of Fork is basically to COPY THE ORIGINAL REPOSITORY to your OWN ACCOUNT

The moment you fork,

image

My username will change here , and your username will showup, it's because my repository is copied in your account. 💁‍♂️

We'll take this Repository (or Folder) in your computer 🥶🥶 Before that

Make a Folder for Github on Desktop, and open the Folder in CMD or Terminal

  1. Clone this repository on to your system git clone https://github.com/YOURGITHUBUSERNAME/Presentation

CLONING MEANS to get the FILES from your REPOSITORY to your computer locally. 🧑‍💻

  1. and now , make changes to Names.txt file.
  2. Now , use command git add . To add all the files to staging area.
  3. Now, use git commit -m "My name added" , to finally save your changes.
  4. Now , push your changes to the REMOTE REPOSITORY (which is online). by using command git push

Congo , You've successfully completed the FIRST PART.

  1. Now your changes are ONLINE, but it's only in your Repository NOT IN MINE.

  2. On in your Repository, you can see a sentence 1(could be any no.) commit ahead, click on it , this will forward you to another page where you can see, the changes in file you made, and there' will a button "Send Pull Request" click on it , with the Title and Description added.

  3. Now the page will be forwarded to MY REPOSITORY

image

you can check whose repository is it, by checking the username on the Top or in the URL.

  1. Well Done, You,ve created your first Pull Request