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
April 4, 2026

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…
Use Composer’s inline branch alias feature to test in-progress PHP package updates without formal releases. A practical solution for integrating feature branches cleanly into dependent projects.
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.