I'm starting of with a new CI project based on the CI 2.0 Reactor repository. Because the CI2 code is still changing, I would like to keep that code fresh, the question is how (using Git).

For the non-CI folks, the basic structure of a CI2 project looks like this:

system/  
application/  
index.php
...

The system directory contains the framework, index.php does the bootstrapping and application contains my project. Ideally, I would like to keep both index.php and the system folder up-to-date using Git. Another thing I would like to adhere to is name of the application folder. (You can change the path of your application folder in index.php.) Keeping the name the same makes it possible to just drop in the folder, and off you go.

I've tried to realize this by using git submodules (see below), but submodules don't let you specify a directory from the target repository.

git submodule add https://github.com/philsturgeon/codeigniter-reactor.git/code-igniter/system system

Any clue how I can achieve this?

link|improve this question
feedback

3 Answers

up vote 2 down vote accepted

Sadly you cannot reference a specific folder in a sub-module, only the root of the sub-module itself. That would mean you need to put your application in a sub-folder, which would be crap.

You can however just set up two remotes on your Git application.

git init
git remote add origin git://whatever
git remote add reactor git@github.com:philsturgeon/codeigniter-reactor.git

Then update with reactor changes

git pull reactor master
git push origin master

Remember that this clone is really intended to help people get their CodeIgniter Reactor changes int without needing to learn Mercurial, but you are welcome to use it as long as it exists.

link|improve this answer
Thanks Phil, that should do it. – Xoc Jan 21 '11 at 14:39
feedback

Not a real answer to your question, but in general it is not a good idea to trust changing third party projects: an update can break your application without warning. I would advise to update it manually every now and then and test your application after the update. This way sudden breaks of your application are less likely to happen.

link|improve this answer
Thanks for the heads up. The project I'm working on is meant for testing purposes and won't be run in a production environment and is supported by unit tests. It is meant to break (and report why it breaks ;-)). – Xoc Jan 20 '11 at 19:44
Whether you update your changes manually or update them by running a command, at some point you are making a conscious decision that "Yes, I want these changes". Most people just wait for stable releases but too much emphasis is put on "stable". As long as you watch the changes being made, you know when you're ready to update. – Phil Sturgeon Jan 21 '11 at 9:48
feedback

For things like this, I update them manually and check for conflicts.

link|improve this answer
Thanks, but my point is to do this automatically. I'd thought a lot of people would have run in to issues like this for managing their dependencies. – Xoc Jan 21 '11 at 9:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.