Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in

how to import or clone repositories with java

uvsq21708389 February 21, 2018

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

2 answers

Suggest an answer

Log in or Sign up to answer
0 votes
uvsq21708389 February 21, 2018

thank you very much

i will look at this

0 votes
Steve Thornhill
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
February 21, 2018

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.

TAGS
AUG Leaders

Atlassian Community Events