You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.