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.
Follow these steps to contribute to this repository:
-
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.
-
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.
- 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.
-
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.
-
Write Your Name: Open the Markdown file and write your name in it:
# John Doe
- Commit Your Changes: Add and commit your changes:
git add .
git commit -m "Added my name: John Doe"
- Push Your Changes: Push your branch to your forked repository:
git push origin add-your-name
- 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.