(configuration config.Configuration, currentBaseBranch Branch)
| 710 | } |
| 711 | |
| 712 | func warnForActiveWipBranches(configuration config.Configuration, currentBaseBranch Branch) { |
| 713 | if isMobProgramming(configuration) { |
| 714 | return |
| 715 | } |
| 716 | |
| 717 | // TODO show all active wip branches, even non-qualified ones |
| 718 | existingWipBranches := getWipBranchesForBaseBranch(currentBaseBranch, configuration) |
| 719 | if len(existingWipBranches) > 0 && configuration.WipBranchQualifier == "" { |
| 720 | say.Warning("Creating a new wip branch even though preexisting wip branches have been detected.") |
| 721 | for _, wipBranch := range existingWipBranches { |
| 722 | say.WithPrefix(wipBranch, " - ") |
| 723 | } |
| 724 | } |
| 725 | } |
| 726 | |
| 727 | func sayUntrackedFilesInfo() { |
| 728 | untrackedFiles := getUntrackedFiles() |
no test coverage detected