Re: [Radiant] Another git question with regards to extensions

2008-12-31 Thread Sean Cribbs
The typical method is with `git submodule`. So if I were to install page_attachments manually, it would be like so: $ git submodule add git://github.com/radiant/radiant-page-attachments-extension.git vendor/extensions/page_attachments $ git submodule init git submodule update You'll

Re: [Radiant] Another git question with regards to extensions

2008-12-31 Thread Sean Cribbs
One thing I forgot to mention. Whenever you clone the project again, you need to run: $ git submodule init git submodule update This will make sure you download the submodules. Sean Nate Turnage wrote: I am trying to get a handle on git and am having some difficulty understanding how to

Re: [Radiant] Another git question with regards to extensions

2008-12-31 Thread Nate Turnage
On Wed, Dec 31, 2008 at 11:45 AM, Sean Cribbs seancri...@gmail.com wrote: I would suggest forking on github, pushing up your changes to your fork, and then creating the submodule from the fork. If you don't want to track other branches/forks but just keep your changes in the Radiant project,

Re: [Radiant] Another git question with regards to extensions

2008-12-31 Thread Nate Turnage
On Wed, Dec 31, 2008 at 11:59 AM, Nate Turnage pixeln...@gmail.com wrote: On Wed, Dec 31, 2008 at 11:45 AM, Sean Cribbs seancri...@gmail.comwrote: I would suggest forking on github, pushing up your changes to your fork, and then creating the submodule from the fork. If you don't want to

[Radiant] Extensions as submodules - one more time

2008-12-31 Thread Nate Turnage
Andrew was kind enough to document for me how to use a local branch of a git-cloned extension in a project. Sean was kind enough to explain how to set up extensions as submodules in a git-managed project. I have one more question related to git, submodules and extensions. Is it possible to create