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
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jérome Perrin
gitlab-ce
Commits
1f105bdc
Commit
1f105bdc
authored
Jul 06, 2016
by
tiagonbotelho
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixes more issues for MR acceptance
parent
fc747dc3
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
16 deletions
+17
-16
app/models/repository.rb
app/models/repository.rb
+12
-12
app/services/files/update_service.rb
app/services/files/update_service.rb
+3
-2
app/views/projects/blob/_editor.html.haml
app/views/projects/blob/_editor.html.haml
+2
-2
No files found.
app/models/repository.rb
View file @
1f105bdc
...
...
@@ -731,29 +731,29 @@ class Repository
end
end
def
update_file
(
user
,
path
,
content
,
branch
,
options
=
{}
)
def
update_file
(
user
,
path
,
content
,
branch
:,
previous_path
:,
message
:
)
commit_with_hooks
(
user
,
branch
)
do
|
ref
|
committer
=
user_to_committer
(
user
)
commit_
options
=
{}
commit_
options
[
:committer
]
=
committer
commit_
options
[
:author
]
=
committer
commit_
options
[
:commit
]
=
{
message:
options
[
:message
]
,
options
=
{}
options
[
:committer
]
=
committer
options
[
:author
]
=
committer
options
[
:commit
]
=
{
message:
message
,
branch:
ref
}
commit_
options
[
:file
]
=
{
options
[
:file
]
=
{
content:
content
,
path:
path
,
update:
options
[
:update
]
update:
true
}
if
options
[
:previous_path
]
commit_options
[
:file
][
:previous_path
]
=
options
[
:previous_path
]
if
previous_path
options
[
:file
][
:previous_path
]
=
previous_path
Gitlab
::
Git
::
Blob
.
rename
(
raw_repository
,
commit_
options
)
Gitlab
::
Git
::
Blob
.
rename
(
raw_repository
,
options
)
else
Gitlab
::
Git
::
Blob
.
commit
(
raw_repository
,
commit_
options
)
Gitlab
::
Git
::
Blob
.
commit
(
raw_repository
,
options
)
end
end
end
...
...
app/services/files/update_service.rb
View file @
1f105bdc
...
...
@@ -4,8 +4,9 @@ module Files
class
UpdateService
<
Files
::
BaseService
def
commit
repository
.
update_file
(
current_user
,
@file_path
,
@file_content
,
@target_branch
,
previous_path:
@previous_path
,
message:
@commit_message
,
update:
true
)
branch:
@target_branch
,
previous_path:
@previous_path
,
message:
@commit_message
)
end
end
end
app/views/projects/blob/_editor.html.haml
View file @
1f105bdc
...
...
@@ -4,8 +4,8 @@
=
icon
(
'code-fork'
)
=
ref
%span
.editor-file-name
-
if
current_action?
(
:edit
)
||
current_action?
(
:update
)
=
text_field_tag
'file_name'
,
(
params
[
:file_name
]
or
@path
),
-
if
current_action?
(
:edit
)
||
current_action?
(
:update
)
=
text_field_tag
'file_name'
,
(
params
[
:file_name
]
||
@path
),
class:
'form-control new-file-name'
-
if
current_action?
(
:new
)
||
current_action?
(
:create
)
...
...
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