#git
Don't stop git it, git it with these Git tips.
Check out our pinterest page dedicated to git as well!
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...
Using Git Stash
Jun 27, 2019
Git stash is a great way to maintain your current work and switch to another branch quickly.