I've got some plugins (JS/AS3) pushed to my Github-account and I'm using them in multiple projects (of-course), which are also processed by Git. If I want to change one of the plugins开发者_JS百科, can I easily update all these projects with this new version somehow?
I'm not sure about the terminology here (forking? branching? pulling?), so it's kind of tricky to search for this.
What you are looking for is submodules in git.
You can check http://progit.org/book/ch6-6.html for a detailed explanation.
Use Git submodules on the projects which use your plugins: http://book.git-scm.com/5_submodules.html
精彩评论