Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
niuiic committed Apr 23, 2024
2 parents 74d5579 + 59b4f31 commit 33d911d
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .git-flow.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[[branch_types]]
name = "feature"
create = "feature/{NAME}"
from = "dev"
to = [{ name = "dev", strategy = "merge" }]

[[branch_types]]
name = "hotfix"
create = "hotfix/{NAME}"
from = "main"
to = [
{ name = "main", strategy = "merge" },
{ name = "dev", strategy = "merge" },
]

[[branch_types]]
name = "bugfix"
create = "bugfix/{NAME}"
from = "dev"
to = [{ name = "dev", strategy = "merge" }]

[[branch_types]]
name = "release"
create = "release/{NAME}"
from = "dev"
to = [{ name = "main", strategy = "merge" }]

0 comments on commit 33d911d

Please sign in to comment.