You must log in or register to comment.
‘git checkout -‘ to toggle between branches ‘git checkout -b branch_name’ to create and switch to a new branch.
Obligatory https://ohshitgit.com/
before every git command i use:
tar -czvf my_directory.tar.gz -C my_directory .
I still haven’t adopted to this git switch thing
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
deleted by creator