diff options
Diffstat (limited to 'set.go')
| -rw-r--r-- | set.go | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -0,0 +1,13 @@ +package gitpb + +func (repo *Repo) SetReadOnly(b bool) { + repo.ReadOnly = b +} + +func (repo *Repo) SetTargetVersion(target string) { + repo.TargetVersion = target +} + +func (repo *Repo) SetMasterBranchName(s string) { + repo.MasterBranchName = s +} |
