16 lines
268 B
Markdown
16 lines
268 B
Markdown
### 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'
|
|
``` |