I have two Git repositories, one for the versioning of my application and the other for the versioning of the DB schema.
I would like to use a continuous integration and deployment system, so I need to link each version of the application with the corresponding version of the DB schema, so that the CI system can pull the right application and DB versions and deploy them.
Is there any way to do this thing with Git?
Thank you