I use KIE Workbench (6.1.0.Beta3) to edit my rules. Since there are some features not being supported by the Workbench yet (e.g. moving rules to other packages), I would like to do this stuff outside of KIE-WB.
For that, I cloned my repository with
git clone git://localhost:9418/my-kie-repository
which works fine. I edit some files, commit them locally and try a git push
afterwards. But I get the error
fatal: Could not read from remote repository.
Please make sure you have the correct access rights and the repository exists.
Since I am almost certain it is the first issue, something about credentials, I added to the .git/config
file the lines
[credential "git://localhost:9418"]
username = admin
password = admin
Still, I get the previously mentioned error. And yes, the KIE Workbench is still running, I can also fetch/pull from there without problems.
Is there any way how to push back to that KIE Workbench repository? According to this message, one "might need to reconfigure origin", but I am unsure about how to change it.
Anyone an idea how to set this up correctly?