This commit is contained in:
Hannes
2025-11-19 21:42:17 +01:00
parent e8d4aa0ae7
commit 84ad54cf59

16
git/overall.md Normal file
View File

@@ -0,0 +1,16 @@
### Miscellaneous practical things with the git command
## Big files
# For some git repos like LLMs you may need to pull with
```
git lfs pull
```
## to switch to a branch
# An existing branch
```
git switch 'branch'
```
# A new branch
```
git switch -c 'branch'
```