Change to git branching for NetBox development #18297
Replies: 7 comments 20 replies
-
What branch will the demo site be running on? |
Beta Was this translation helpful? Give feedback.
-
How will you maintain a system that uses a git checkout but wants to stay on the latest release code? Will you have to do "git fetch" followed by "git checkout vX.Y.Z" to select an explicit tagged version? |
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
Beta Was this translation helpful? Give feedback.
-
I get this error after trying to log in |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
To simplify NetBox development, we've decided to make some changes to the project's long-standing git branches. Prior to the v4.2.0 release, the project utilized three permanent branches:
master
- Always represents the current stable releasedevelop
- Any work intended for the next patch release of the current minor versionfeature
- Feature work & breaking changes intended for the next minor release (e.g. v4.3)We are replacing the
develop
branch with a new branch namedmain
. This will serve as the project's default branch. Additionally, themaster
branch will no longer be used.Beginning with the v4.2.0 release, only the following branches will be maintained long-term:
main
feature
All work on the current minor release will be performed in the
main
branch, and (as before) all feature work planned for the upcoming minor release will be performed in thefeature
branch. Please see issue #13366 for further discussion on this topic.Beta Was this translation helpful? Give feedback.
All reactions