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

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,560,328
Community Members
 
Community Events
185
Community Groups

within bit bucket search I would like to export the search results

Within bitbucket I search repositories for a string 

e.g. 'joe.smith@company.com'

I get a scrollable page that shows the results.

I would like to save that page (or at least the results) to a file (csv, xml, txt, I don't care)

(fyi: right click save as does not work...)

 

I can control A and select all (gives me the info, but it is really poorly formatted contains line numbers etc.)

4 answers

2 votes
Ana Retamal
Atlassian Team
Atlassian Team members are employees working across the company in a wide variety of roles.
Jan 16, 2019

Hi Warren, that functionality is not available at the moment. If you'd like, you cna submit a Feature request in our Issue Tracker portal. If you do, please be as descriptive as possible so our developers and the rest of the users understand the purpose and importance of this request.

You can also post the link here afterwards for more visibility.

Hope that helps!

Ana

@Ana Retamal I would certainly love this feature to be implemented. The request is as simple as providing a feature to export the search results. Currently it's only for web use and you can't export it to send it to someone or publish it in particular format. 

@Ana Retamal    Hi I was searching for the same feature.   We had a simple export option in TeamForge when searching.    Side note - I went to Issue Tracker portal and tried searching if someone submitted this enhancement already.   I cant find anything, but that seems like something that was requested.   

@Ana Retamal We are using BitBucket server on-prem, and we would love very much to have this feature.  But when I follow your link Issue Tracker portal to create a request, I got the following message.  And it leads me to the Atlassian Support page.  It looks like customers cannot create request.  Any help would be greatly appreciated.

Support Requests are not handled by this system.

Please create all Support Requests on our Support System. If you have not used our support service before you will need to sign up for a new account.

@Ana RetamalHi I just created https://jira.atlassian.com/browse/BSERV-13245?filter=98687 to request this feature.  I've not seen any update on this topic for more than a year now.  Could you let us know if there is a such feature in the plan?

 

Thanks, Andy

I would like to add a +1 for this feature request.  Exporting the results of the searches would be very useful!

Thanks,

Winston

Like # people like this
0 votes
Peter Brandström
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
May 10, 2023

I made a VBA script for Excel.

Search Bitbucket using a web browser, Ctrl+A to select all, paste into column A in Excel. Run the Excel VBA script. It will output the Project, Repo and File into columns B, C and D.

Sub parse_bitbucket_searchresult()
toRow = 1
toCol = 2
numrows = ActiveSheet.UsedRange.Rows(ActiveSheet.UsedRange.Rows.Count).Row

Application.ScreenUpdating = False

For x = 15 To numrows
If Cells(x, 1).Hyperlinks.Count > 0 Then
Cells(x, 1).Copy
Cells(toRow, toCol).PasteSpecial xlPasteAll
Cells(toRow, toCol).IndentLevel = 0
toCol = toCol + 1
If toCol > 4 Then
toCol = 2
toRow = toRow + 1
End If
End If
Next
Application.ScreenUpdating = True
End Sub

This would be a great feature, but only because it is not possible to effectively filter searches in bitbucket itself. Being able to search for strings with slashes, colons etc would be fantastic.

This would be a helpful feature

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events