Skip to content

Commit c3b79b8

Browse files
committed
Adds more context to how naming branches
1 parent 31455da commit c3b79b8

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

ch02git/10Branches.ipynb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -877,11 +877,11 @@
877877
"source": [
878878
"### A good branch strategy\n",
879879
"\n",
880-
"* A `production` branch: code used for active work\n",
881-
"* A `develop` branch: for general new code\n",
882-
"* `feature` branches: for specific new ideas\n",
883-
"* `release` branches: when you share code with others\n",
884-
" * Useful for isolated bug fixes"
880+
"* A `develop` or `main` branch: for general new code - (the cutting edge version of your software)\n",
881+
"* `feature` branches: for specific new ideas. Normally branched out from `main`.\n",
882+
"* `release` branches: when you share code with users. A particular moment of the `develop` process that it's considered stable.\n",
883+
" * Useful for including security and bug patches once it's been released.\n",
884+
"* A `production` branch: code used for active work. Normally it's the same than the latest release."
885885
]
886886
},
887887
{

0 commit comments

Comments
 (0)