NewWithOptions sets non default configuration options. See New for complete help.
(fs billy.Filesystem, o Options)
| 123 | // NewWithOptions sets non default configuration options. |
| 124 | // See New for complete help. |
| 125 | func NewWithOptions(fs billy.Filesystem, o Options) *DotGit { |
| 126 | return &DotGit{ |
| 127 | options: o, |
| 128 | fs: fs, |
| 129 | } |
| 130 | } |
| 131 | |
| 132 | // Initialize creates all the folder scaffolding. |
| 133 | func (d *DotGit) Initialize() error { |
no outgoing calls
searching dependent graphs…