We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As a user, I would like to clone all of my starred repos, so that I can look through the code to see how they work.
Might want to update the existing code to use 'clone_url' and then download things to appropriate directory as described below:
API call1
$ curl -fsSL "https://api.github.com/users/chrisopedia/starred" | jq '.[] | .clone_url'
Pagination function
$ curl -sI "https://api.github.com?page=1&per_page=100" | sed -nE "s/^Link:.*page=([0-9]+)&per_page=100>; rel=\"last\".*/\1/p"
Sample cloning
$ git clone http://github.com/leaverou/prism.git leaverou/prism
The text was updated successfully, but these errors were encountered:
iamnewton
No branches or pull requests
As a user,
I would like to clone all of my starred repos,
so that I can look through the code to see how they work.
Requirements
Might want to update the existing code to use 'clone_url' and then download things to appropriate directory as described below:
Notes
API call1
Pagination function
Sample cloning
The text was updated successfully, but these errors were encountered: