Compare commits

..

1 Commits

Author SHA1 Message Date
9f3a3808f9 docs: you can add another git remote 2024-05-12 09:04:52 +02:00
3 changed files with 12 additions and 12 deletions

View File

@ -2,4 +2,4 @@ default: true
MD010: false # Ignore tabs in code blocks MD010: false # Ignore tabs in code blocks
MD013: false # Don't wrap lines by default MD013: false # Don't wrap lines by default
MD046: MD046:
style: "fenced" # Force fenced code blocks style: 'fenced' # Force fenced code blocks

View File

@ -339,13 +339,6 @@ class TfElement extends LitElement {
}; };
let tabs = html` let tabs = html`
<style>
@media only screen and (max-width: 650px) {
.hide-on-small-screens {
display: none;
}
}
</style>
<div class="w3-bar w3-theme-l1"> <div class="w3-bar w3-theme-l1">
${Object.entries(k_tabs).map( ${Object.entries(k_tabs).map(
([k, v]) => html` ([k, v]) => html`
@ -358,7 +351,6 @@ class TfElement extends LitElement {
@click=${() => self.set_tab(v)} @click=${() => self.set_tab(v)}
> >
${k} ${k}
<span class="hide-on-small-screens">${v}</span>
</button> </button>
` `
)} )}

View File

@ -4,9 +4,17 @@
- Clone your repository - Clone your repository
Alternatively, you can change the `origin` remote on your existing clone: 1. Alternatively, you can add a remote called `fork`:
`git remote set-url origin https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git` `git remote add fork https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
You'll need to set your branch's upstream to `fork`:
`git push --set-upstream fork my-branch`
2. or you can change the `origin` remote on your existing clone altogether:
`git remote set-url origin https://dev.tildefriends.net/YOUR_USERNAME/tildefriends.git`
- Make your changes - Make your changes