Every 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
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-edit often.

Like if I forget to run a formatter before I commit and the build complains just for that.

git add -u
git commit --amend --no-edit
git push -f
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:

tar -czvf my_directory.tar.gz -C my_directory .

MuThyme@lemmy.world · 1 pts · 2y
[ removed ]
lseif@sopuli.xyz · 0 pts · 2y

make sure to run

cd ..
cp -r my-project my-project.bak
cd my-project

before running each command :)