// isGitRepo reports whether the working directory is inside a Git repository.
func isGitRepo() bool {
- p := ".git"
- for {
- fi, err := os.Stat(p)
- if os.IsNotExist(err) {
- p = filepath.Join("..", p)
- continue
- }
- if err != nil || !fi.IsDir() {
- return false
- }
- return true
- }
+ // NB: simply checking the exit code of `git rev-parse --git-dir` would
+ // suffice here, but that requires deviating from the infrastructure
+ // provided by `run`.
+ gitDir := chomp(run(goroot, 0, "git", "rev-parse", "--git-dir"))
+ if !filepath.IsAbs(gitDir) {
+ gitDir = filepath.Join(goroot, gitDir)
+ }
+ fi, err := os.Stat(gitDir)
+ return err == nil && fi.IsDir()
}
/*