GitBranch
enum GitBranch : Equatable, Hashable
The GitBranch
-
Master Branch
Declaration
Swift
case master -
Develop Branch
Declaration
Swift
case develop -
Feature Branch
Declaration
Swift
case feature(name: String) -
HotFix Branch
Declaration
Swift
case hotfix(name: String) -
Custom Branch
Declaration
Swift
case custom(name: String)
View on GitHub
GitBranch Enumeration Reference