Cleaning Up Unnecessary Remote-Tracking References
2 min
git pull can be slow if you have a lot of remote branches. Remove unnecessary tracking of remote branches to reduce the amount of time spent updating the repository
Read post ›
How to restore lost commits using git reflog
1 min
A way to restore lost commits after a hard reset or a bad force push
Read post ›
Make Git forget about committed files in .gitignore
1 min
A way to remove a file committed in git that you now want git to forget about
Read post ›
How to move a commit between repositories
1 min
Steps to move a commit from one repository to another
Read post ›
How to change the author of multiple Git commits
1 min
A snippet for updating the author details of several commits in a git repository
Read post ›
A guide to securing git commits from tricking you on Windows
3 min
Did you know that you can check in code as anyone in your git repository by default? This article shows you how to prevent this problem by using a GUI.
Read post ›