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
Boxiang Sun
gitlab-ce
Commits
8403b389
Commit
8403b389
authored
Aug 07, 2018
by
Luke Bennett
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
port changes
parent
9d5d5d86
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
6 deletions
+3
-6
app/assets/javascripts/pages/projects/settings/repository/show/mirror_repos.js
...s/pages/projects/settings/repository/show/mirror_repos.js
+1
-1
app/assets/stylesheets/framework/buttons.scss
app/assets/stylesheets/framework/buttons.scss
+0
-4
app/views/projects/mirrors/_instructions.html.haml
app/views/projects/mirrors/_instructions.html.haml
+2
-1
No files found.
app/assets/javascripts/pages/projects/settings/repository/show/mirror_repos.js
View file @
8403b389
...
...
@@ -50,7 +50,7 @@ export default class MirrorRepos {
this
.
debouncedUpdateUrl
=
_
.
debounce
(()
=>
this
.
updateUrl
(),
200
);
this
.
$urlInput
.
on
(
'
input
'
,
()
=>
this
.
debouncedUpdateUrl
());
this
.
$protectedBranchesInput
.
on
(
'
change
'
,
()
=>
this
.
updateProtectedBranches
());
this
.
$table
.
on
(
'
click
'
,
'
.js-delete-mirror
'
,
this
.
deleteMirror
.
bind
(
this
));
this
.
$table
.
on
(
'
click
'
,
'
.js-delete-mirror
'
,
event
=>
this
.
deleteMirror
(
event
));
}
togglePassword
()
{
...
...
app/assets/stylesheets/framework/buttons.scss
View file @
8403b389
...
...
@@ -242,10 +242,6 @@
&
:not
(
:last-child
)
{
margin-right
:
5px
;
}
&
.hide
{
display
:
none
;
}
}
}
...
...
app/views/projects/mirrors/_instructions.html.haml
View file @
8403b389
...
...
@@ -3,7 +3,8 @@
%li
=
_
(
'
The
repository
must
be
accessible
over
<
code
>
http
:/
/<
/code>,
<code>https:/
/<
/code>, <code>ssh:/
/<
/code> and <code>git:/
/<
/code>.').html_safe
%li
=
_
(
'The update action will time out after 10 minutes. For big repositories, use a clone/push combination.'
)
%li
=
_
(
'Include the username in the URL if required: <code>https://username@gitlab.company.com/group/project.git</code>.'
).
html_safe
%li
=
_
(
'The update action will time out after 15 minutes. For big repositories, use a clone/push combination.'
)
%li
=
_
(
'The Git LFS objects will <strong>not</strong> be synced.'
).
html_safe
%li
=
_
(
'
This
user
will
be
the
author
of
all
events
in
the
activity
feed
that
are
the
result
of
an
update
,
...
...
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