Earl
Well-known member
Does anyone use version control system with XenForo addons?
In case you guys are using git how do you setup repositories with xf addons?
In my case I think I should use git submodules on each plugin, but currently I'm facing a problem
"XenForo" Folder is the super project and I can initialize a git submodule in "XenForo/library/MyPlugin" directory. (of cause I can export the plugin.xml file and put it inside the same directory so I can track templates phrases etc.)
But the problem is in "/js/MyPlugin" directory. I can't track that folder because it's in outside of the submodule.
Did anyone face this problem?
How do you guys setup git repos?
I'm using Vagrant on a windows desktop pc, so the symlinks doesn't work I guess.
In case you guys are using git how do you setup repositories with xf addons?
In my case I think I should use git submodules on each plugin, but currently I'm facing a problem
Code:
XenForo
|
|
+--js/MyAddon/Addon.js
|
+--library/MyAddon
| | +-Controller/..
| | |
| | +-Model/..
| | |
| | +-.git
| |
| +--Model/..
| +--View/..
| +--ControllerPublic/..
|
+--.git
"XenForo" Folder is the super project and I can initialize a git submodule in "XenForo/library/MyPlugin" directory. (of cause I can export the plugin.xml file and put it inside the same directory so I can track templates phrases etc.)
But the problem is in "/js/MyPlugin" directory. I can't track that folder because it's in outside of the submodule.
Did anyone face this problem?
How do you guys setup git repos?
I'm using Vagrant on a windows desktop pc, so the symlinks doesn't work I guess.