I waited a long time to try this, but it proved surprisingly easy
In the bash terminal ... if you have brew installed on a Mac
$ brew install gh
All sorts of setup messages...
Next, before you can do anything, you need to authenticate.
Any command will probably lead to the message
To authenticate, `please run gh auth login`
OK, so let's do it
$ gh auth login
? What account do you want to log into? GitHub.com
? What is your preferred protocol for Git operations? SSH
? Upload your SSH public key to your GitHub account? /Users/yosemite/.ssh/github_rsa.pub
? How would you like to authenticate GitHub CLI? Login with a web browser
! First copy your one-time code: [CODE IS HERE]
- Press Enter to open github.com in your browser...
Web browser opens and I enter that code.
Note: This only worked because I had setup this SSH public key thing previously. That's how you have to get into GitHub these days.
You probably know how to set up a git repo in the terminal. Go to the folder you want to make a git repo.
$ git init
$ g init
$ g commit -m "first commit, adding about half of the 'munging' content from functions.R so far"
$ gh repo create
? What would you like to do? Push an existing local repository to GitHub
? Path to local repository .
? Repository name rethinkpriorities/r-noodling-package
? Description package of commands for dynamically working with data, not producing output
? Visibility Public
\✓ Created repository rethinkpriorities/r-noodling-package on GitHub
? Add a remote? Yes
? What should the new remote be called? origin
✓ Added remote [email protected]:rethinkpriorities/r-noodling-package.git
? Would you like to push commits from the current branch to the "origin"? Yes
✓ Pushed commits to [email protected]:rethinkpriorities/r-noodling-package.git
Note, I largely selected the default options (given in parens in the interface) above.
Note the organization came before the repo name in rethinkpriorities/r-noodling-package
This repo, an R-package thing, is now up here
This gist was set up with the command: