Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
G
gitlab-ce
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
1
Merge Requests
1
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
nexedi
gitlab-ce
Commits
4af9566d
Commit
4af9566d
authored
Oct 09, 2019
by
Diana Stanley
Committed by
Evan Read
Oct 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Docs: Add commands to delete a merge request
parent
ba44545a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
...dministration/troubleshooting/gitlab_rails_cheat_sheet.md
+9
-0
No files found.
doc/administration/troubleshooting/gitlab_rails_cheat_sheet.md
View file @
4af9566d
...
@@ -688,6 +688,15 @@ u = User.find_by_username('')
...
@@ -688,6 +688,15 @@ u = User.find_by_username('')
MergeRequests
::
PostMergeService
.
new
(
p
,
u
).
execute
(
m
)
MergeRequests
::
PostMergeService
.
new
(
p
,
u
).
execute
(
m
)
```
```
### Delete a merge request
```
ruby
u
=
User
.
find_by_username
(
'<username>'
)
p
=
Project
.
find_by_full_path
(
'<group>/<project>'
)
m
=
p
.
merge_requests
.
find_by
(
iid:
<
IID
>
)
Issuable
::
DestroyService
.
new
(
m
.
project
,
u
).
execute
(
m
)
```
### Rebase manually
### Rebase manually
```
ruby
```
ruby
...
...
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