github-fullname

2019.3.22 • Public • Published

get repo github username

Installation

$ [sudo] pip install github-fullname

CLI

usage: github-fullname path

Examples

cd path/to/repo
$ github-fullname .
owner/repo
$ find ~/git -type d -mindepth 1 -maxdepth 1 -exec github-fullname {} \;
owner/repo1
SKIP (~/git/repo2): .git NOT EXISTS
owner/repo3
...

hide errors

$ find ~/git -maxdepth 1 -exec github-fullname {} \; 2> /dev/null
owner/repo1
owner/repo3
...

show github orphaned repos:

$ python -m github_repos | grep -v "$(find ~/git -maxdepth 1 -exec github-fullname {} \; 2> /dev/null)"

delete github orphaned repos:

$ python -m github_repos | grep -v "$(find ~/git -maxdepth 1 -exec github-fullname {} \; 2> /dev/null)" | xargs python -m github_delete

readme-generator

Readme

Keywords

Package Sidebar

Install

npm i github-fullname

Weekly Downloads

0

Version

2019.3.22

License

Unlicense

Unpacked Size

3.11 kB

Total Files

3

Last publish

Collaborators

  • russianidiot
  • andrewp-as-is