c/git · by mac@programming.dev · 2yEvery git command I use (Cheatsheet) https://wizardzines.com/comics/every-git-command/ Not OC 101 points · 6 comments · view on lemmy.world
6 Comments
tuto193@lemmy.world · 5 pts · 2y
Obligatory https://ohshitgit.com/
DScratch@sh.itjust.works · 5 pts · 2y
‘git checkout -‘ to toggle between branches ‘git checkout -b branch_name’ to create and switch to a new branch.
GarytheSnail@programming.dev · 3 pts · 2y
I use
git commit --amend --no-editoften.Like if I forget to run a formatter before I commit and the build complains just for that.
ShrimpsIsBugs@programming.dev · 3 pts · 2y
I still haven't adopted to this git switch thing
JoYo@lemmy.ml · 3 pts · 2y
before every git command i use:
MuThyme@lemmy.world · 1 pts · 2y
lseif@sopuli.xyz · 0 pts · 2y
make sure to run
before running each command :)