summaryrefslogtreecommitdiff
path: root/set.go
diff options
context:
space:
mode:
Diffstat (limited to 'set.go')
-rw-r--r--set.go13
1 files changed, 13 insertions, 0 deletions
diff --git a/set.go b/set.go
new file mode 100644
index 0000000..8821e0d
--- /dev/null
+++ b/set.go
@@ -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
+}