From 90f81a8d35884d2e6dafa7ba4f2afd92b82d0990 Mon Sep 17 00:00:00 2001 From: Aatmaja Joshi <78197261+aatmajajoshi@users.noreply.github.com> Date: Mon, 13 May 2024 10:17:05 +0530 Subject: [PATCH] Updated README.md I added the new step 3 in README.md, which was missing in the documentation, which will help new open-source beginners. --- README.md | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index b8887c0..b7382f8 100644 --- a/README.md +++ b/README.md @@ -22,32 +22,38 @@ git clone https://github.com//cosmoXplore.git ``` -3. **Create a New Branch:** Establish a new branch for your profile using the command: +3. **Navigate to your repository:** Navigate to your new project directory by using the command: + +``` +cd cosmoXplore +``` + +4. **Create a New Branch:** Establish a new branch for your profile using the command: ``` git checkout -b ``` -4. **Add Your Changes:** Add the modified files to the stage with the following command: +5. **Add Your Changes:** Add the modified files to the stage with the following command: ``` git add . ``` -5. **Commit Your Changes:** Save your alterations to the branch by executing: +6. **Commit Your Changes:** Save your alterations to the branch by executing: ``` git commit -m "Your descriptive commit message" ``` -6. **Push to the Branch:** Transmit the changes to the remote repository using: +7. **Push to the Branch:** Transmit the changes to the remote repository using: ``` git push origin ``` -7. **Create a Pull Request:** Submit your modifications to the main repository by generating a pull request. Click on the "Compare & pull request" button on your forked repository page. +8. **Create a Pull Request:** Submit your modifications to the main repository by generating a pull request. Click on the "Compare & pull request" button on your forked repository page. -8. **Wait for Review and Merge:** Wait for the project maintainers to review and merge your changes. +9. **Wait for Review and Merge:** Wait for the project maintainers to review and merge your changes. ---