documentation review

This commit is contained in:
2022-10-05 11:35:16 +01:00
parent e847f028ae
commit 2fc96f0756

View File

@@ -1,4 +1,18 @@
# git
## change origin url
git remote set-url origin $giturl
```bash
git remote set-url origin <origin-url>
```
## Create new branch from uncommited
```bash
git switch -c <new-branch>
# or
git checkout -b <new-branch>
```