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
iv
gitlab-shell
Commits
d18ec685
Commit
d18ec685
authored
Nov 18, 2014
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #193 from cirosantilli/tag-branch-rm-double-dash
Delete tags and branches that start with hyphen
parents
53fed51b
fc5edba6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lib/gitlab_projects.rb
lib/gitlab_projects.rb
+2
-2
No files found.
lib/gitlab_projects.rb
View file @
d18ec685
...
@@ -65,7 +65,7 @@ class GitlabProjects
...
@@ -65,7 +65,7 @@ class GitlabProjects
def
rm_branch
def
rm_branch
branch_name
=
ARGV
.
shift
branch_name
=
ARGV
.
shift
cmd
=
%W(git --git-dir=
#{
full_path
}
branch -D
#{
branch_name
}
)
cmd
=
%W(git --git-dir=
#{
full_path
}
branch -D
--
#{
branch_name
}
)
system
(
*
cmd
)
system
(
*
cmd
)
end
end
...
@@ -83,7 +83,7 @@ class GitlabProjects
...
@@ -83,7 +83,7 @@ class GitlabProjects
def
rm_tag
def
rm_tag
tag_name
=
ARGV
.
shift
tag_name
=
ARGV
.
shift
cmd
=
%W(git --git-dir=
#{
full_path
}
tag -d
#{
tag_name
}
)
cmd
=
%W(git --git-dir=
#{
full_path
}
tag -d
--
#{
tag_name
}
)
system
(
*
cmd
)
system
(
*
cmd
)
end
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