From 84ad54cf5982e04fe45477e505bd250673857237 Mon Sep 17 00:00:00 2001 From: Hannes Date: Wed, 19 Nov 2025 21:42:17 +0100 Subject: [PATCH] git tips --- git/overall.md | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 git/overall.md diff --git a/git/overall.md b/git/overall.md new file mode 100644 index 0000000..8522361 --- /dev/null +++ b/git/overall.md @@ -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' +``` \ No newline at end of file