6fbdc5ed52
This allows users to add patches as attachments to merge request created via email. When an email to create a merge request is sent, all the attachments ending in `.patch` will be applied to the branch specified in the subject of the email. If the branch did not exist, it will be created from the HEAD of the repository. When the patches could not be applied, the error message will be replied to the user. The patches can have a maximum combined size of 2MB for now.
23 lines
549 B
Diff
23 lines
549 B
Diff
From 00c68c2b4f954370ce82a1162bc29c13f524897e Mon Sep 17 00:00:00 2001
|
|
From: Patch User <patchuser@gitlab.org>
|
|
Date: Mon, 22 Oct 2018 11:05:48 +0200
|
|
Subject: [PATCH] This does not apply to the `feature` branch
|
|
|
|
---
|
|
files/ruby/feature.rb | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
create mode 100644 files/ruby/feature.rb
|
|
|
|
diff --git a/files/ruby/feature.rb b/files/ruby/feature.rb
|
|
new file mode 100644
|
|
index 0000000..fef26e4
|
|
--- /dev/null
|
|
+++ b/files/ruby/feature.rb
|
|
@@ -0,0 +1,5 @@
|
|
+class Feature
|
|
+ def bar
|
|
+ puts 'foo'
|
|
+ end
|
|
+end
|
|
--
|
|
2.19.1
|