using git submodules for plugins
# 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 commitTo load the submodule, you need to
git...