Skip to content

Instantly share code, notes, and snippets.

@cverbiest
Created July 12, 2023 09:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cverbiest/350a4abaf4ec1dbb4621c27e6c00e4e3 to your computer and use it in GitHub Desktop.
Save cverbiest/350a4abaf4ec1dbb4621c27e6c00e4e3 to your computer and use it in GitHub Desktop.
GitHub oneliners

List forks of repo

List forks of repo, sorted by pushed date

REPO_OWNER= REPO_NAME= curl https://api.github.com/repos/$REPO_OWNER/$REPO_NAME/forks | jq -j '.[] | ."pushed_at", " https://github.com/" + ."full_name", "\n"' | sort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment