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
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
gitlab-ce
Commits
99fcb80e
Commit
99fcb80e
authored
Mar 25, 2015
by
Dmitriy Zaporozhets
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #9021 from nicklegr/faster_auto_merge
Faster merge request processing for large repository
parents
6199da0c
f21bd9b1
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
5 deletions
+2
-5
CHANGELOG
CHANGELOG
+1
-0
lib/gitlab/satellite/satellite.rb
lib/gitlab/satellite/satellite.rb
+1
-5
No files found.
CHANGELOG
View file @
99fcb80e
...
...
@@ -39,6 +39,7 @@ v 7.10.0 (unreleased)
- Link note avatar to user.
- Make Git-over-SSH errors more descriptive.
- Send EmailsOnPush email when branch or tag is created or deleted.
- Faster merge request processing for large repository
v 7.9.0
- Add HipChat integration documentation (Stan Hu)
...
...
lib/gitlab/satellite/satellite.rb
View file @
99fcb80e
...
...
@@ -99,11 +99,7 @@ module Gitlab
heads
=
repo
.
heads
.
map
(
&
:name
)
# update or create the parking branch
if
heads
.
include?
PARKING_BRANCH
repo
.
git
.
checkout
({},
PARKING_BRANCH
)
else
repo
.
git
.
checkout
(
default_options
({
b:
true
}),
PARKING_BRANCH
)
end
repo
.
git
.
checkout
(
default_options
({
B
:
true
}),
PARKING_BRANCH
)
# remove the parking branch from the list of heads ...
heads
.
delete
(
PARKING_BRANCH
)
...
...
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