Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var HotfixCmd = &cobra.Command{ Args: cobra.NoArgs, Use: "hotfix", Short: "Quickly patch a production release", Long: `Quickly patch a production release. Hotfix is a type of branch used to quickly patch a production release. Hotfix branches are very much like release branches except they're based on master instead of develop. Hotfix branches are created when there's a need to quickly fix an issue in the production version of the software. The name of the branch typically starts with 'hotfix/' followed by a version number and an optional brief description of the fix. Once the fix is complete, the hotfix branch is merged back into both master and develop (or the current release branch), so that the fix is included in the next release as well. The master branch is then tagged with the updated production version number. This way, the Gitflow model ensures that fixes for urgent production bugs can be delivered quickly, without interrupting ongoing development work.`, }
HotfixCmd represents the hotfix subcommand of RootCmd.
Functions ¶
This section is empty.
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.