Skip to content
forked from muesli/gitcha

Go helpers to work with git repositories

License

Notifications You must be signed in to change notification settings

meowgorithm/gitcha

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

25 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

gitcha

Latest Release Build Status Coverage Status Go ReportCard GoDoc

Go helpers to work with git repositories

Examples

import "github.com/muesli/gitcha"

// returns the directory of the git repository path is a member of:
repo, err := gitcha.GitRepoForPath(path)

// finds files from list in path. It respects all .gitignores it finds while
// traversing paths:
ch, err := gitcha.FindFiles(path, []string{"*.md"})

for v := range ch {
    fmt.Println(v.Path)
}

// just for convenience:
ok := gitcha.IsPathInGit(path)

About

Go helpers to work with git repositories

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 100.0%