did you know you can create a branch and hop onto it in one command? π git switch -c does both. the -c stands for create, so git switch -c your-branch-name makes the branch and drops you right on it. one command instead of two. (and to jump to a branch that already exists, skip the -c) βΊοΈ
1 likes 1 replies
?