Quantcast
Channel: How to see how many repos created from my repo template (GitHub) - Stack Overflow
Browsing all 3 articles
Browse latest View live

Answer by ArkieCoder for How to see how many repos created from my repo...

Shell scripting and gh FTW:#!/bin/bashorg_name="MYORGNAME"repo_list=`gh repo list $org_name --limit 1000 | awk '{print $1}'`template_repo=$1if [ -z "$template_repo" ]then echo "Usage: $0...

View Article



Answer by Meir Gabay for How to see how many repos created from my repo...

Eureka! After reading this - Search based on the contents of a repository, the answer was clear! Search by README.md file content!Use GitHub's search engine and provide a unique combination of words...

View Article

How to see how many repos created from my repo template (GitHub)

How can I see a list of all the child repos that have been created from my template repo on GitHub?GitHub displays how many forks were created from a given repo at the top of the WUI, next to the...

View Article
Browsing all 3 articles
Browse latest View live




Latest Images