postnote

We currently have a full team here at Abletech but in saying that we're always on the look-out for great developers. If that sounds like you, feel free to get in touch.

postnote

News & Updates

Posts tagged “Git Rails”

using git submodules for plugins

by marcus.

# first remove your copy and paste plugin....

git rm -r vendor/plugins/xxxxxxgit commit

now you are ready to add the submodule

git submodule add git://your_git_repo/xxxxx.git vendor/plugins/xxxxxgit commit
To load the submodule, you need to
git...