From 1d00b9fc8fff58930e2f760dd3710049ff54f3ee Mon Sep 17 00:00:00 2001 From: Vitaly Date: Thu, 2 May 2024 13:27:35 +0200 Subject: [PATCH] Updated CONTRIBUTING.md. --- .github/CONTRIBUTING.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 829f873..dfe39c1 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -4,13 +4,13 @@ This document describes how you can contribute to Micro Hosts Editor. Please rea ## Issues -Feel free to open issues and [report bugs](https://github.com/xvitaly/mhed/issues/new?template=bug-report.md) or ask for [feature requests](https://github.com/xvitaly/mhed/issues/new?template=feature-request.md). +Feel free to open issues, [report bugs](https://github.com/xvitaly/mhed/issues/new?template=bug-report.yml), [request new features](https://github.com/xvitaly/mhed/issues/new?template=feature-request.yml), or [ask questions](https://github.com/xvitaly/mhed/issues/new?template=question.yml) about our project. ## Pull requests - 1. Create your own fork by pressing **Fork** button. + 1. Create your own fork by clicking the **Fork** button. - 2. Clone your repository + 2. Clone your repository: ```bash git clone git@github.com:YOURNAME/mhed.git ``` @@ -25,29 +25,29 @@ Feel free to open issues and [report bugs](https://github.com/xvitaly/mhed/issue git add . && git commit -sm "Full description of your changes" ``` - 5. Add upstream as a [remote repository](https://help.github.com/articles/configuring-a-remote-for-a-fork/): + 5. Add the upstream as a [remote repository](https://help.github.com/articles/configuring-a-remote-for-a-fork/): ```bash git remote add upstream https://github.com/xvitaly/mhed.git ``` - 6. Fetch upstream changes and [sync](https://help.github.com/articles/syncing-a-fork/) your fork's `master` branch with it: + 6. Fetch changes from the upstream and [sync](https://help.github.com/articles/syncing-a-fork/) your fork's `master` branch with it: ```bash git fetch upstream git checkout master git merge upstream/master ``` - 7. Rebase your feature branch to updated `master`: + 7. Rebase your feature branch to the updated `master`: ```bash git checkout new_feature git rebase master ``` - 8. Squash all your commits into a single one and open a new pull request. + 8. Squash all your commits into one and open a new pull request. ### Signing off your work -Don't forget to sign off your work by using `git commit -s`: +Don't forget to sign off your work using `git commit -s`: ``` Signed-off-by: Name Surname ```