summaryrefslogtreecommitdiff
path: root/bin/gitlab-projects
diff options
context:
space:
mode:
authorNick Thomas <nick@gitlab.com>2018-01-12 13:26:03 +0000
committerNick Thomas <nick@gitlab.com>2018-01-12 13:38:06 +0000
commit73e2cf531ca8b92dc48da5024c8095256aa10818 (patch)
treee9062e256967e9782527b4e032be7c44d60e388b /bin/gitlab-projects
parentf8f314890758983e9d167529cb3a332a01262d5c (diff)
downloadgitlab-shell-73e2cf531ca8b92dc48da5024c8095256aa10818.tar.gz
Remove the GitlabProjects implementation
Diffstat (limited to 'bin/gitlab-projects')
-rwxr-xr-xbin/gitlab-projects29
1 files changed, 0 insertions, 29 deletions
diff --git a/bin/gitlab-projects b/bin/gitlab-projects
deleted file mode 100755
index 22b0022..0000000
--- a/bin/gitlab-projects
+++ /dev/null
@@ -1,29 +0,0 @@
-#!/usr/bin/env ruby
-
-
-require_relative '../lib/gitlab_init'
-
-#
-# GitLab Projects shell. Add/remove projects from /home/git/repositories
-#
-# Ex.
-# /bin/gitlab-projects add-project gitlab/gitlab-ci.git
-#
-# /bin/gitlab-projects rm-project gitlab/gitlab-ci.git
-#
-# /bin/gitlab-projects list-projects
-#
-# /bin/gitlab-projects mv-project gitlab/gitlab-ci.git randx/fork.git
-#
-# /bin/gitlab-projects fork-project gitlab/gitlab-ci.git randx
-#
-# /bin/gitlab-projects import-project randx/six.git https://github.com/randx/six.git
-#
-require File.join(ROOT_PATH, 'lib', 'gitlab_projects')
-
-# Return non-zero if command execution was not successful
-if GitlabProjects.new.exec
- exit 0
-else
- exit 1
-end