Strategy for maintaining extension code in a github repository #3589
Replies: 1 comment
-
I think I have found a good solution using Composer. Below is my configuration:
"repositories": [
{
"type": "path",
"url": "./localdev/*",
"canonical": false
}
],
This way I can work directly on the linked files to have autocompletion and everything else (not in localdev directory). |
Beta Was this translation helpful? Give feedback.
-
Hello devs,
I want to ask you what is your best strategy for keeping an extension code updated in a GitHub repository?
I usually use modman, which allows me to work separately in another folder, but if there are new files and directories, I have to remember to update the modman file and redeploy.
I would like to keep it a simple process, best for me is to work directly in the root with the entire OpenMage core with any other extensions files then tracking only the files that I want to keep under version control.
I have read about different strategies with .gitignore that first esclude all then include specific file and folders, but they seem too complicated to me.
Beta Was this translation helpful? Give feedback.
All reactions