| 442 | } |
| 443 | |
| 444 | func branch(configuration config.Configuration) { |
| 445 | say.Say(silentgit("branch", "--list", "--remote", newBranch("*").addWipPrefix(configuration).remote(configuration).Name)) |
| 446 | |
| 447 | // DEPRECATED |
| 448 | say.Say(silentgit("branch", "--list", "--remote", newBranch("mob-session").remote(configuration).Name)) |
| 449 | } |
| 450 | |
| 451 | func determineBranches(currentBranch Branch, localBranches []string, configuration config.Configuration) (baseBranch Branch, wipBranch Branch) { |
| 452 | if currentBranch.Is("mob-session") || (currentBranch.Is("master") && !configuration.CustomWipBranchQualifierConfigured()) { |