Categorygithub.com/integralist/go-findroot
module
0.0.0-20160518114804-ac90681525dc
Repository: https://github.com/integralist/go-findroot.git
Documentation: pkg.go.dev

# README

go-findroot

Locate the root directory of a project using Git via the command line

Example

package main

import (
	"fmt"
	"log"

	"github.com/integralist/go-findroot/find"
)

func main() {
  root, err := find.Repo()
  if err != nil {
    log.Fatalf("Error: %s", err.Error())
  }

  fmt.Printf("%+v", root)
  // {Name:go-findroot Path:/Users/M/Projects/golang/src/github.com/integralist/go-findroot}
}

Tests

go test -v ./...

Licence

The MIT License (MIT)

Copyright (c) 2016 Mark McDonnell

# Packages

No description provided by the author