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
1e08d000
Commit
1e08d000
authored
Mar 05, 2018
by
Zeger-Jan van de Weg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Lazy fetch parent commits for a commit
parent
b8aa65d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
2 deletions
+5
-2
app/models/commit.rb
app/models/commit.rb
+5
-2
No files found.
app/models/commit.rb
View file @
1e08d000
...
...
@@ -9,6 +9,7 @@ class Commit
include
Mentionable
include
Referable
include
StaticModel
include
::
Gitlab
::
Utils
::
StrongMemoize
attr_mentionable
:safe_message
,
pipeline: :single_line
...
...
@@ -225,11 +226,13 @@ class Commit
end
def
parents
@parents
||=
parent_ids
.
map
{
|
id
|
project
.
commit
(
id
)
}
@parents
||=
parent_ids
.
map
{
|
oid
|
Commit
.
lazy
(
project
,
o
id
)
}
end
def
parent
@parent
||=
project
.
commit
(
self
.
parent_id
)
if
self
.
parent_id
strong_memoize
(
:parent
)
do
project
.
commit_by
(
oid:
self
.
parent_id
)
if
self
.
parent_id
end
end
def
notes
...
...
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