Skip to content

Files

Latest commit

 

History

History
48 lines (30 loc) · 1.46 KB

README.md

File metadata and controls

48 lines (30 loc) · 1.46 KB

Name Markdown Files

Welcome to the "Name Markdown Files" repository! This project is a simple and fun way to practice contributing to an open-source project by creating Markdown files with your name.

Getting Started

Follow these steps to contribute to this repository:

  1. Fork the Repository: Click the "Fork" button at the top right corner of this page to create a copy of this repository in your GitHub account.

  2. Clone the Repository: Clone the forked repository to your local machine using the following command:

   git clone https://github.com/your-username/name-markdown-files.git

Replace your-username with your GitHub username.

  1. Create a New Branch: Create a new branch for your contribution:
git checkout -b add-your-name

Replace add-your-name with a suitable branch name.

  1. Create Your Markdown File: In the cloned repository, create a new Markdown file with your name. For example, if your name is John Doe, create a file named john-doe.md.

  2. Write Your Name: Open the Markdown file and write your name in it:

# John Doe
  1. Commit Your Changes: Add and commit your changes:
git add .
git commit -m "Added my name: John Doe"
  1. Push Your Changes: Push your branch to your forked repository:
git push origin add-your-name
  1. Create a Pull Request: Go to the original repository on GitHub and you should see a button to compare & pull request. Click it and submit your pull request for review.