651.288.7000 info@intertech.com
Introduction to Git Concepts

Introduction to Git Concepts

Introduction To Git Concepts – Overview Are you using Git for the first time and feeling the challenge of the initial Git concepts? I have mentored many people learning Git and discovered a few core concepts most important to first understand.  After discussing these...

Git Maintenance: fsck

While the Git gc command optimizes and removes dead objects from the repo, the fsck command reports on repo problems. git fsck I used to run it with the –full option, but this is now the default.  I typically run it as is or with the –tags option.  You may...

Git Maintenance: gc

A Git user needs to perform regular local repo maintenance for repo performance and its health.  Thankfully, this is very simple – yet I’m surprised at how many users are unaware of this command and the need for it. The main command for maintenance is gc....