diff --git a/README.md b/README.md index 0d838d4..5fb60e8 100644 --- a/README.md +++ b/README.md @@ -36,11 +36,18 @@ Themes to Convert ## How to Contribute -1. Install [Hugo](https://gohugo.io) - - Version 0.125.5 or above -2. Clone Repo -3. Write changes -4. Test locally -5. Create branch -6. Create pull request +Before you start, install [Hugo](https://gohugo.io) version 0.125.5 or above +```sh +# First clone the repository +$ git clone https://git.32bit.cafe/32bitcafe/32bit.cafe.git +# Then create a branch +$ git checkout -b my-branch +# Write your changes in your preferred code editor +# Test them locally +$ hugo server +# If your changes look good, commit and push them up +$ git commit -m "my changes" +$ git push -u origin my-branch +# Then on git.32bit.cafe, create a pull request +```