(c config.Configuration)
| 784 | } |
| 785 | |
| 786 | func gitPushArgs(c config.Configuration) []string { |
| 787 | pushArgs := []string{"push"} |
| 788 | if !c.SkipCiPushOptionEnabled { |
| 789 | return pushArgs |
| 790 | } |
| 791 | return append(pushArgs, "--push-option", "ci.skip") |
| 792 | } |
| 793 | |
| 794 | func getUntrackedFiles() string { |
| 795 | return silentgit("ls-files", "--others", "--exclude-standard", "--full-name") |
no outgoing calls
no test coverage detected