You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
Hi All,
Am Trying to List all the Repository in a Project with the creation Timestamp/Modified timestamp,
First I tried to list all repository in a Project using the below API
==========================================
1 ) curl -s -k --request GET --user <"username:password"> "https://<host>/rest/api/1.0/projects/<projectkey>/repos"
It gives the output in a single line(that is near to not readable)
Please suggest on how to make the output in a readable format, I tried running it from Gitbash and from Bash Shell in a Linux Server.
2) once I get the List of Repos in a good format , I shall send it in a loop to get the Creation/Modified time, BUT I need to have the API options to get the creation/modified Timestamp .
Any suggestion/Advise would be of much help..
For the format, try adding --header 'Accept: application/json' to the curl command.
For iterating and querying the input, try using jq
Hope that helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.