I have a quiet a few repositories.
I would like to see a tree view of which of my repository has which other repository as parent, If there is another parent which is not my repo, then display that with another color.
And display which of repositories has dependencies to any of my other repositories.
Will see clear paths, help to clean up structure. Can see circurlar dependencies
A quick tree view
Some simple for methods
List<Repo> getAllRepositoriesForUser();
Repo getParentRepository(Repo)
Boolean isRepoOneUsersOwn(Repo)
List<Repo> getUserReposWhichRepoHasDependencyTo(Repo)
I am not sure what is the question here.
Note that the labels of the question suggest that you are using Bitbucket Cloud, but the Java method signatures listed are available only on Bitbucket Data Center (and the legacy Server). On cloud, you can build a solution to your problem using the Bitbucket Cloud REST API.
https://developer.atlassian.com/cloud/bitbucket/rest/intro/#authentication
Will see clear paths, help to clean up structure. Can see circurlar dependencies
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.