Author
|
zPlus <zplus@peers.community>
2022-07-27 09:51:19
|
Committer
|
zPlus <zplus@peers.community>
2022-07-27 09:51:19
|
Commit
|
a515132
(patch)
|
Tree
|
e17c609
|
Parent(s)
|
|
Fix repository name on overview page.
The repository overview page showed the wrong HTTPS/SSH paths for the repository.
commits diff:
f59b413..a515132
1 file changed,
2 insertions,
2 deletions
—
download
Diffstat
Diff options
+2/-2
M templates/repository/readme.html
14
|
14
|
|
|
15
|
15
|
|
<div class="overview">
|
16
|
16
|
|
<b>Anon. clone</b><br />
|
17
|
|
- |
https://{{ instance_domain }}/{{ repository[0] }}/{{ repository[1] }}.git
|
|
17
|
+ |
https://{{ instance_domain }}/{{ repository }}
|
18
|
18
|
|
|
19
|
19
|
|
<br /><br />
|
20
|
20
|
|
|
21
|
21
|
|
<b>SSH</b><br />
|
22
|
|
- |
git@{{ instance_domain }}:{{ repository[0] }}/{{ repository[1] }}
|
|
22
|
+ |
git@{{ instance_domain }}:{{ repository[:-4] }}
|
23
|
23
|
|
|
24
|
24
|
|
{% if head_ref %}
|
25
|
25
|
|
<br /><br />
|