Hello!
Please tell me how I can create a repository in the bitbucket server without using a local copy, but by copying another repository in the project.
Thank you @Maciej Adamczak I don't want to clone the repository locally, Jira creates an empty repository and branches when creating tasks, we use the Java api to create the repository, but the problem is that it is empty and we cannot create branches through the java api.
Hi @Дмитрий Груздев if your repository is hosted remotely you can try to import the repository using the built-in importer:
Additionally, you could try to manually copy the repository by pushing the local version of it to a new remote upstream.
First, you would have to initialize the empty repository in Bitbucket and then configure a new upstream in your local repository:
git remote add name-of-your-new-upstream ssh://git@my-bitbucket-server.com:7999/your-project/the-new-repo.git
git push name-of-your-new-upstream --mirror
More information about the remotes and how to clone the repository:
Thanks,
Maciej
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.