6
0
mirror of https://github.com/grdl/git-get.git synced 2026-02-09 11:29:19 +00:00

Add output flag and simple tree option

This commit is contained in:
Grzegorz Dlugoszewski
2020-06-08 14:00:59 +02:00
parent f3d0df1bfd
commit e5c3285040
8 changed files with 123 additions and 54 deletions

View File

@@ -18,6 +18,14 @@ const (
DefDefaultHost = "github.com"
KeyPrivateKey = "privateKey"
DefPrivateKey = "id_rsa"
KeyOutput = "out"
DefOutput = OutFlat
)
const (
OutFlat = "flat"
OutSmart = "smart"
OutSimple = "simple"
)
// gitconfig provides methods for looking up configiration values inside .gitconfig file