From f6c97ac9db733d21eea0ed01e0d77ccaa9289331 Mon Sep 17 00:00:00 2001 From: Andrew Shu Date: Wed, 9 Jul 2025 08:57:22 -0700 Subject: [PATCH] Fix code block formatting in CONTRIBUTING.md --- CONTRIBUTING.md | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 5081d3d..d51ac4b 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -77,13 +77,19 @@ This section contains notes for Tildes code repository maintainers. If you are a 2. Bump the `tildes/package.json` version on `master`. E.g. to `"1.101.0"`. 3. Add a Git tag on the commit that bumped the `package.json` version: - $ git tag -a -m'Automatically insert meme GIF links every other post' v1.101.0 +```sh +$ git tag -a -m'Automatically insert meme GIF links every other post' v1.101.0 +``` 4. Create new `staging-` and `develop-` branches for the **next** version: - $ git branch -c master staging-1.102 - $ git branch -c master develop-1.102 +```sh +$ git branch -c master staging-1.102 +$ git branch -c master develop-1.102 +``` 5. Push the new tag and branches to the main Tildes repo (assuming Git remote named `upstream`): - $ git push --follow-tags upstream master staging-1.102 develop-1.102 \ No newline at end of file +```sh +$ git push --follow-tags upstream master staging-1.102 develop-1.102 +``` \ No newline at end of file