Heads up! On March 5, starting at 4:30 PM Central Time, our community will be undergoing scheduled maintenance for a few hours. During this time, you might find the site temporarily inaccessible. Thanks for your patience. Read more.
×Stash's REST API uses a paged system and will, in general never just return all of something. This is to ensure performance of the system is maintained and REST requests can be processed very quickly.
You can check the REST documentation here for more info on how the paging works.
To retrieve all repositories on any given Stash instance, you would need to:
The REST response for the repos contains that repository's clone URLs (for HTTP and SSH, depending on availability).
Another thing of note: the caller needs to have at least read access to all projects and repos for this to work.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Stash Command Line Interface (CLI) has both getProjectList and getRepositoryList. You can also use runFromProjectList and combine that with getRepositoryList to get all repositories across all projects.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Felix Haehnel
Thanks for your prompt reply.
I am a Stash administrator. I want to get all none-fork repositories and backup them.
Can I use 'http://example.com/rest/api/1.0/repos' to implement.
Thank very much
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Shuaibing Li, sorry for the confusion in my answer above. Yes, as you rightly pointed out, you can use the /rest/api/1.0/repos endpoint with no query parameters. That will save you having to query all the projects. That endpoint is also paged and, depending on the number of repos your Stash instance contains, you will still need to make multiple requests to retrieve all repos .
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Why do you want to back up the not forked repos? Just because a repo is forked doesn't give you any kind of backup.
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.