Software and website development guides, tips and tricks

Using Git Submodules

Git submodules let you include one Git repository inside another as a dependency. Instead of copying code, you reference a specific commit of an external repository. It provides you with…

0 Comments

Setting Up Global Git Ignore Rules

If you find yourself adding the same local files to .gitignore in every project, it might be time for a global ignore file. This post explains how to set one up and when it makes sense to use it in your development workflow.

0 Comments