#git

Don't stop git it, git it with these Git tips.

Check out our pinterest page dedicated to git as well!

Using Git Worktrees

Oct 29, 2025

Git worktrees allow you to work on multiple branches simultaneously without the hassle of stashing or switching contexts.

Add A Prepare Commit Message To Customize Git Commits

Dec 13, 2022

If you work with any agile software or Github issues it is sometimes useful to prepend your commit message with a reference to the ticket or issue so commits can be associate with a work item.

Git Shallow Clone

Oct 03, 2019

If you git clone a repository it brings in the entire repository which contains every revision of every file ever made. Sometimes this is overkill. Try a shallow clone instead!

Git Cherry Pick

Jul 23, 2019

Another feature with git that comes in handy sometimes is the ability to cherry pick certain commits...

A Nicer Force Git Push

Jul 09, 2019

Most of us have had to git push --force before to overwrite the remote history of your repository. There is a flag that is a bit safer...