summaryrefslogtreecommitdiff
path: root/set.go
blob: 8821e0d43c25a709b24f1b74056702204ba86e4f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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
}