I found one caveat that -pluginCustomization plugin_customization.ini property inside megit.ini its path to plugin_customization.ini is relative therefore megit should be executed within its directory.
What works with hypothetical path /usr/local/megit:
localhost:~:%
cd /usr/local/megit && ./megit
What will be problematic:
localhost:~:%
/usr/local/megit/megit
Workaround can also be to edit megit.ini and set absolute path -pluginCustomization <absolute_path>
I found one caveat that
-pluginCustomization plugin_customization.ini
property insidemegit.ini
its path toplugin_customization.ini
is relative therefore megit should be executed within its directory.What works with hypothetical path /usr/local/megit:
What will be problematic:
Workaround can also be to edit megit.ini and set absolute path
-pluginCustomization <absolute_path>
Originally posted by @jirkafm in https://github.com/eclipsesource/megit/issues/1#issuecomment-763709178