Auto: misc.

This commit is contained in:
2021-05-02 18:49:01 +02:00
parent dab46b05b3
commit dce7c2175d
2 changed files with 13 additions and 1 deletions
+2
View File
@@ -4,3 +4,5 @@
- [[snapshot]] - [[snapshot]]
- [[how many tabs do you have open?]] - [[how many tabs do you have open?]]
- [[flancian feedback]] - [[flancian feedback]]
- [[git]]
- [[push an existing repository to a new remote]]
@@ -0,0 +1,10 @@
# push an existing repository to a new remote
- first [[commit]]
- then:
```
git remote add origin git@example.org:username/repo.git
git branch -M main
git push -u origin main
```