How To Run Prettier On Changed Files Only
1 min read
Run prettier to format files that are changed in Git.
Change from HTTPS to SSH in a Git Repo
2 min read
The default way of cloning and maintaining Git repos for some might be using HTTPS. In case you want...
Clean Your Git History With Git Fixup
2 min read
The easiest way to clean up your git history by using fixup and autosquash.
How to Override Local Files with Git Pull
1 min read
Override your local project with the latest changes from your git repository
How To Delete a Git Branch - Locally and Remotely
1 min read
Branching is great, it does, however, look much better if you remember to remove your old branches so...
How To Delete Your Last Commit
1 min read
Sometimes things just go wrong, and thankfully we have Git to save some time. This is a short guide on...
How To Use Git Stash
1 min read
Git stash temporarily saves your changes and stashes them. You usually do it if you quickly need to work...
How To Commit with Git
1 min read
To commit your work is probably the thing you do the most with git. It's basically to save a snapshot...
How To Use Git Branches with Git Merge
1 min read
Branching with git is a great feature, this is a simple workflow for how to branch and merge different...
How To Use Git Rebase
1 min read
Keep a clean history with rebase, instead of cluttering your teams commit history. This is the simplest...
How To Git Squash Earlier Commits
1 min read
Sometimes you want to squash, or combine, earlier commits back in your history. This is one way you can...
How To Use Git Squash
2 min read
Git squash can be used to combine several commits into one. This is the easy way to do it.