Hi,
On Sun, 27 Jan 2008, Kirill wrote:
> Personally, I don't have any objections as long as you update the
> instructions on how to pull the sub-module.
It will be the same as for every submodule:
$ cd / && git submodule update src/git-cheetah
However, this will always detach the HEAD to the revision which is current
in the _superproject_.
So if you hack on git-cheetah, you probably want to initialise the
submodule once with said command line, and then just work on the submodule
as if it were a stand-alone git project (which it is):
$ cd /src/git-cheetah && git pull
Ciao,
Dscho