Push programatically
I need to push foobar.txt programatically. How to do that? This is my approach:
21 Replies
⌛
This post has been reserved for your question.
Hey @Peter Rader! Please useTIP: Narrow down your issue to simple and precise questions to maximize the chance that others will reply in here./close
or theClose Post
button above when your problem is solved. Please remember to follow the help guidelines. This post will be automatically marked as dormant after 300 minutes of inactivity.
Unfortunately the output sais it could not read from repo. This is the output:
oh, jgit
not egit
lol
though you don't even seem to be using egit a lot lol
IIRC
git://
is the read-only protocol that needs to be explicitly configured
or are you trying to use SSH?From the code above you can see that I do nothing with SSH.
What is
git://localhost/abc/
supposed to be?For security reasons I would not use the git:-protocol. But I think it is possible to do writes anyway -- even if a bad idea.
Are you using the git protocol?
The last time I checked, the git protocol is disabled by default and doesn't allow writes
Mate, see the code above. There is no more classes in the project, just this one.
Did you execute the same commands in a terminal? Did you get the same output?
Yes
fatal: Could not read from remote repository.seems like the
git://localhost/abc/
doesn't work
and - I don't see any reason why it should workAnd I don't see any reason why it shoulnt work.
Because
git://localhost/abc/
is not a valid repo? You created an InMemoryRepository
but how is that related to git://localhost/abc/
?
and from the docs
This means that there is generally no pushing over this protocol. You can enable push access but, given the lack of authentication, anyone on the internet who finds your project’s URL could push to that project. Suffice it to say that this is rare.I don't see you enabling push access Do you expect the
git push
command to create a repository?I expect "init" to create and "push" to publish the repo.
you might need to enable receive-pack functionality for the daemon
if you really want to use the git protocol
it seems to be disabled by default: https://github.com/eclipse-jgit/jgit/blob/4957eeb00d8a560d4246201dab87a2db173d9f6b/org.eclipse.jgit/src/org/eclipse/jgit/transport/Daemon.java#L130
GitHub
jgit/org.eclipse.jgit/src/org/eclipse/jgit/transport/Daemon.java at...
JGit, the Java implementation of git. Contribute to eclipse-jgit/jgit development by creating an account on GitHub.
as it is the case with the normal daemon
Also you might want to consider adding a breakpoint in your repository resolver
Can you run
gitDaemon.getService("upload-pack").isEnabled()
?
my fault
gitDaemon.getService("receive-pack").isEnabled()
gitDaemon.getService("git-receive-pack").setEnabled(true);
worked like a charm
ThanksIf you are finished with your post, please close it.
If you are not, please ignore this message.
Note that you will not be able to send further messages here after this post have been closed but you will be able to create new posts.
💤
Post marked as dormant
This post has been inactive for over 300 minutes, thus, it has been archived.
If your question was not answered yet, feel free to re-open this post or create a new one.
In case your post is not getting any attention, you can try to use /help ping
.
Warning: abusing this will result in moderative actions taken against you.
Post Closed
This post has been closed by <@574922348642172929>.