我如何在 github 中包含另一个项目
我已经为 javascript 库创建了一个插件,并希望将其作为新项目上传到 github。在我的插件目录中,我包含了 javascript 插件的当前代码。
所以用户很容易获得我的插件和 javascript 库,我想我应该将 javascript 项目包含在我的目录中。我的目的不是对js库进行更改,而是让用户下载我的项目并同时获取最新版本的js库。
我可以通过将 js 库项目分叉到我的目录中来手动执行此操作,然后在每次新版本出现时同步它,但有没有办法自动执行此操作?
I have created a plugin for a javascript library and want to upload this to github as a new project. Within my plugin directory, i include the current code for the javascript plugin.
So it's easy for users to get my plugin plus the javascript library, i thought i would include the javascript project inside my directory. My intention was not to make changes to the js library but to allow the user to download my project and get the latest version of the js library at the same time.
I could do this manually by forking the js library project into my directory and then syncing it each time a new version comes out but is there a way to do this automatically ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
查看 git 子模块,它完全符合您的描述!
Check out git submodule, it does exactly what you describe!