-
1
-
2
-
3
-
4
-
5
-
6
-
7
-
8
-
9
-
10
-
11
-
12
-
13
-
14
-
15
// Copyright 2026 Shota FUJI <pockawoooh@gmail.com>
// SPDX-License-Identifier: MIT
package exe
var gitPath string
func GitBin() string {
if gitPath != "" {
return gitPath
}
// Let the system resolve.
return "git"
}