Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-shell
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kazuhiko Shiozaki
gitlab-shell
Commits
4d2d7068
Commit
4d2d7068
authored
Nov 07, 2013
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'separate_options_from_args' of /home/git/repositories/gitlab/gitlab-shell
parents
bd3ccfbc
4616d2ef
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
lib/gitlab_projects.rb
lib/gitlab_projects.rb
+4
-4
No files found.
lib/gitlab_projects.rb
View file @
4d2d7068
...
...
@@ -48,7 +48,7 @@ class GitlabProjects
def
create_branch
branch_name
=
ARGV
.
shift
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
)
end
...
...
@@ -61,7 +61,7 @@ class GitlabProjects
def
create_tag
tag_name
=
ARGV
.
shift
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
)
end
...
...
@@ -94,7 +94,7 @@ class GitlabProjects
def
import_project
@source
=
ARGV
.
shift
$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
)
end
...
...
@@ -156,7 +156,7 @@ class GitlabProjects
end
$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
)
end
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment