summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Schilling <rschilling@student.tugraz.at>2016-04-15 13:30:33 +0200
committerRobert Schilling <rschilling@student.tugraz.at>2016-04-15 13:30:33 +0200
commit106c443e76fe143ef3d7ef504b404fa4a2667e93 (patch)
tree606881ada713bfc60b8a862a9d534f0ea5c0d25b
parentc795ef079cde695080ef34444899b77127db6075 (diff)
downloadgitlab-ce-106c443e76fe143ef3d7ef504b404fa4a2667e93.tar.gz
Remove unused backend methods
-rw-r--r--lib/gitlab/backend/shell.rb27
1 files changed, 0 insertions, 27 deletions
diff --git a/lib/gitlab/backend/shell.rb b/lib/gitlab/backend/shell.rb
index b9bb6e76081..0c3dbc744b5 100644
--- a/lib/gitlab/backend/shell.rb
+++ b/lib/gitlab/backend/shell.rb
@@ -92,33 +92,6 @@ module Gitlab
'rm-project', "#{name}.git"])
end
- # Add repository branch from passed ref
- #
- # path - project path with namespace
- # branch_name - new branch name
- # ref - HEAD for new branch
- #
- # Ex.
- # add_branch("gitlab/gitlab-ci", "4-0-stable", "master")
- #
- def add_branch(path, branch_name, ref)
- Gitlab::Utils.system_silent([gitlab_shell_projects_path, 'create-branch',
- "#{path}.git", branch_name, ref])
- end
-
- # Remove repository branch
- #
- # path - project path with namespace
- # branch_name - branch name to remove
- #
- # Ex.
- # rm_branch("gitlab/gitlab-ci", "4-0-stable")
- #
- def rm_branch(path, branch_name)
- Gitlab::Utils.system_silent([gitlab_shell_projects_path, 'rm-branch',
- "#{path}.git", branch_name])
- end
-
# Add repository tag from passed ref
#
# path - project path with namespace