+15
appview/pages/templates/repo/empty.html
+15
appview/pages/templates/repo/empty.html
···
7
7
</p>
8
8
</main>
9
9
{{ end }}
10
+
11
+
{{ define "repoAfter" }}
12
+
<section class="mt-4 p-6 rounded bg-white w-full mx-auto overflow-auto">
13
+
<strong>push</strong>
14
+
<pre>
15
+
git remote add origin git@tangled.sh:{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }} </pre
16
+
>
17
+
<strong>clone</strong>
18
+
<pre>
19
+
git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
20
+
git clone git@tangled.sh:{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
21
+
</pre
22
+
>
23
+
</section>
24
+
{{ end }}
+7
-1
appview/pages/templates/repo/index.html
+7
-1
appview/pages/templates/repo/index.html
···
205
205
206
206
207
207
<section class="mt-4 p-6 rounded bg-white w-full mx-auto overflow-auto">
208
+
<strong>push</strong>
209
+
<pre>
210
+
git remote add origin git@tangled.sh:{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }} </pre
211
+
>
208
212
<strong>clone</strong>
209
213
<pre>
210
-
git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }} </pre
214
+
git clone https://tangled.sh/{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
215
+
git clone git@tangled.sh:{{ .RepoInfo.OwnerWithAt }}/{{ .RepoInfo.Name }}
216
+
</pre
211
217
>
212
218
</section>
213
219
{{ end }}