I've just started using Git and I love it, but I have had an issue figuring out the best way to handle configuration control of multiple projects. So, lets say I have the following projects:
- Common
- Project1
- Project1b
- Project2
Where Project[x] has dependencies within Common and Project1b has dependencies in both Common and Project1. Right now they're all separate git repositories (which I'd like to keep) but I run into issues when I'm jumping from different branches (say in Project1) where I will subsequently have to make sure the correct branch in Common is being used. I am wondering if there's an intuitive way built into git to manage an overall system configuration (branch X from Project1 should be used with branch Y from Common).
I'm running on Windows with git extentions so (sadly) my scripting capability is limited.
Any suggestions welcomed! Thanks.