I have a git media repository that I'm keeping all of my javascript and css master files and scripts that I'll use on various projects. My question is if I create a new project that's in it's own git repository, how do I use javascript files from my media repository in my new project in a way that makes it so I don't have to update both copies of the script when I make changes.
|
feedback
|
|
Good question. The key is git submodules. Start reading the Submodules chapter of the Git Communuty Book or of the User's Manual Say you have repository PROJECT1, PROJECT2, and MEDIA...
Repeat on the other repo... Now, the cool thing is that any time you commit changes to MEDIA, you can do this:
This just recorded the fact that the MEDIA submodule WITHIN PROJECT2 is now at version XYZ. It gives you 100% control over what version of MEDIA each project uses. git submodules are great, but you need to experiment and learn about them. With great power comes the great chance to get bitten in the rump. | |||||
feedback
|
|
If I understand your problem well you want the following things:
Unfortunately there is no ultimate solution for what you want, but there are some things by which you can make your life easier. First you should decide one important thing: do you want to store for every version in your project repository a reference to the version of the media files? So for example if you have a project called example.com, do you need know which style.css it used 2 weeks ago, or the latest is always (or mostly) the best? If you don't need to know that, the solution is easy:
In most of the cases, however, you want to know this versioning information. In this case you have two choices:
If I were you I would probably choose the first or third solution (symbolic links or submodules). If you choose to use submodules you can still do a lot of things to make your life easier:
You can add local directories as a remote this way:
If you modify a file in /my/project1/media, you can commit it and pull it from /my/project2/media without pushing it to a remote server:
You are free to remove these commits later (with git reset) because you haven't shared them with other users. | |||
|
feedback
|