From ddb894a4ddb85c22041060b7244948e237877553 Mon Sep 17 00:00:00 2001 From: mirrorgo Date: Sat, 17 Aug 2024 18:41:14 +1000 Subject: [PATCH 1/3] chore: test format --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 279ddca..87569ca 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -3,7 +3,7 @@ import Image from "next/image"; export default function Home() { return (
-
wow
+
wow husky test
test husky 123

From afed13690c6abae4165ab9cd6a0c0f27fd1eae98 Mon Sep 17 00:00:00 2001 From: mirrorgo Date: Sat, 17 Aug 2024 18:42:04 +1000 Subject: [PATCH 2/3] chore: test husky format again --- app/page.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/page.tsx b/app/page.tsx index 87569ca..4721c8d 100644 --- a/app/page.tsx +++ b/app/page.tsx @@ -3,7 +3,7 @@ import Image from "next/image"; export default function Home() { return (

-
wow husky test
+
husky test
test husky 123

From e72359b4bf666d3ae565f460e3dba8c21d4dfb43 Mon Sep 17 00:00:00 2001 From: mirrorgo Date: Sat, 17 Aug 2024 18:55:02 +1000 Subject: [PATCH 3/3] docs: fix render bug in md for branch name --- docs/BRANCH_MANAGEMENT.md | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/docs/BRANCH_MANAGEMENT.md b/docs/BRANCH_MANAGEMENT.md index b39c6eb..c91742a 100644 --- a/docs/BRANCH_MANAGEMENT.md +++ b/docs/BRANCH_MANAGEMENT.md @@ -13,31 +13,31 @@ ## 1. Branch Structure Overview -- Main Branch (main) +- Main Branch (`main`) - Represents the stable version of the project. - Code must undergo a pull request (PR) and pass code reviews. - Only merges from: - - release - - doc -- Documentation Branch (doc) + - `release` + - `doc` +- Documentation Branch (`doc`) - Used exclusively for documentation. - Cannot merge from any other branches. -- Release Branch (release) +- Release Branch (`release`) - Contains stable code ready for delivery. - Code must undergo a pull request (PR) and pass code reviews. - - Only merges from feature/\* branches. -- Feature Branches (feature/\*) + - Only merges from `feature/*` branches. +- Feature Branches (`feature/*`) - Used for specific feature development. - Developers pull the latest code from main or release as needed. - Can be organized as: - - feature/ - - feature/- + - `feature/` + - `feature/-` - Periodically merges into release. -- Test Branches (test/\*) +- Test Branches (`test/*`) - Used for testing specific aspects of the project. - Should not merge into any other branch but can receive merges. -> protected branches: main, release +> protected branches: `main`, `release` ## 2. Best Practices