Skip to content

Commit

Permalink
Modification to README.md file. Typo and brief explanation of Push
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoTracchia committed Jan 5, 2024
1 parent bf3631b commit 24103e5
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,11 @@ git checkout -b 'new-branch-name'
### 4. Make your changes

Navigate to the category where you your resources to be added. Once you've identified the appropriate category and have your resource in mind, proceed to make the necessary changes within that specific category.
Navigate to the category where you want your resources to be added. Once you've identified the appropriate category and have your resource in mind, proceed to make the necessary changes within that specific category.

### 5. Stage and commit your changes:

- Stage your changes using the `git add` command.
- Stage your changes using the `git add .` command.
- Commit your staged changes using the `git commit` command.
- Use a descriptive commit message that explains the purpose of your changes.
For example:
Expand All @@ -98,7 +98,7 @@ git commit -m "Your descriptive commit message here"
### 6. Push your changes:


Pushing is how you transfer commits from your local repository to a remote one. To push use the command `git push origin` followed by your branch name.

```bash
git push origin 'your-branch-name'
Expand All @@ -108,7 +108,7 @@ git push origin 'your-branch-name'
### 5. Submit your changes for review

If you go to your repository on GitHub, you'll see a `Compare & pull request` button. Click on it to submit your PR.
If you go to your repository on GitHub, you'll see a `Compare & Pull Request` button. Click on it to submit your PR.


#### Congratulations on successfully submitting your PR to our project! 🎉
Expand Down

0 comments on commit 24103e5

Please sign in to comment.