The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hello everyone,
I'm asking a question because I need help
For my java project, I need to import a bitbucket project. I'm doing it now with:
Process proc=null;
Runtime r= Runtime.getRuntime();
proc=r.exec("git clone https://MYACCOUNT:PWD@bitbucket.org/XXXX/XXX.git XXX");
And it works!
but i would like to make sure the java client can import without having git already installed.
I searched on: https://developer.atlassian.com/bitbucket/api/2/reference/
and even on the net but I do not find how I could implement between bitbucket server and java client.
PLEASE can someone explain me how to communicate between my java program andbitbucket
thank you in advance
The Bitbucket server is storing the git repositories you are access, so you would need a git client to be able to clone.
However, if you are just trying to clone direct from java, you could look at this class - http://www.codeaffine.com/2015/11/30/jgit-clone-repository/
I've not tried using this, but it seems to match what you are attempting.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, We’re always looking at how to improve Confluence and customer feedback plays an important role in making sure we're investing in the areas that will bring the most value to the most c...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.