コード例 #1
0
ファイル: repository_metas.go プロジェクト: kourge/ggit
func (repo *Repository) Ignores() (*format.GlobTable, error) {
	path := filepath.Join(repo.path, "..", ".gitignore")
	return format.GlobTableAtPath(path)
}
コード例 #2
0
ファイル: repository_metas.go プロジェクト: kourge/ggit
func (repo *Repository) Excludes() (*format.GlobTable, error) {
	path := filepath.Join(repo.path, "info", "exclude")
	return format.GlobTableAtPath(path)
}