Commit 4d2d7068 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Merge branch 'separate_options_from_args' of /home/git/repositories/gitlab/gitlab-shell

parents bd3ccfbc 4616d2ef
...@@ -48,7 +48,7 @@ class GitlabProjects ...@@ -48,7 +48,7 @@ class GitlabProjects
def create_branch def create_branch
branch_name = ARGV.shift branch_name = ARGV.shift
ref = ARGV.shift || "HEAD" ref = ARGV.shift || "HEAD"
cmd = %W(git --git-dir=#{full_path} branch #{branch_name} #{ref}) cmd = %W(git --git-dir=#{full_path} branch -- #{branch_name} #{ref})
system(*cmd) system(*cmd)
end end
...@@ -61,7 +61,7 @@ class GitlabProjects ...@@ -61,7 +61,7 @@ class GitlabProjects
def create_tag def create_tag
tag_name = ARGV.shift tag_name = ARGV.shift
ref = ARGV.shift || "HEAD" ref = ARGV.shift || "HEAD"
cmd = %W(git --git-dir=#{full_path} tag #{tag_name} #{ref}) cmd = %W(git --git-dir=#{full_path} tag -- #{tag_name} #{ref})
system(*cmd) system(*cmd)
end end
...@@ -94,7 +94,7 @@ class GitlabProjects ...@@ -94,7 +94,7 @@ class GitlabProjects
def import_project def import_project
@source = ARGV.shift @source = ARGV.shift
$logger.info "Importing project #{@project_name} from <#{@source}> to <#{full_path}>." $logger.info "Importing project #{@project_name} from <#{@source}> to <#{full_path}>."
cmd = %W(git clone --bare #{@source} #{full_path}) cmd = %W(git clone --bare -- #{@source} #{full_path})
system(*cmd) && create_hooks(full_path) system(*cmd) && create_hooks(full_path)
end end
...@@ -156,7 +156,7 @@ class GitlabProjects ...@@ -156,7 +156,7 @@ class GitlabProjects
end end
$logger.info "Forking project from <#{full_path}> to <#{full_destination_path}>." $logger.info "Forking project from <#{full_path}> to <#{full_destination_path}>."
cmd = %W(git clone --bare #{full_path} #{full_destination_path}) cmd = %W(git clone --bare -- #{full_path} #{full_destination_path})
system(*cmd) && create_hooks(full_destination_path) system(*cmd) && create_hooks(full_destination_path)
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment