IndexWriter returns a file pointer for write to the index file
()
| 190 | |
| 191 | // IndexWriter returns a file pointer for write to the index file |
| 192 | func (d *DotGit) IndexWriter() (billy.File, error) { |
| 193 | return d.fs.Create(indexPath) |
| 194 | } |
| 195 | |
| 196 | // Index returns a file pointer for read to the index file |
| 197 | func (d *DotGit) Index() (billy.File, error) { |