Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rosylilly/github-keys
公開鍵おいしいです^q^
https://github.com/rosylilly/github-keys
Last synced: 5 days ago
JSON representation
公開鍵おいしいです^q^
- Host: GitHub
- URL: https://github.com/rosylilly/github-keys
- Owner: rosylilly
- License: mit
- Created: 2013-02-17T12:33:35.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-12-20T00:57:21.000Z (about 11 years ago)
- Last Synced: 2024-12-22T13:14:52.585Z (15 days ago)
- Language: Ruby
- Size: 113 KB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# Github::Keys
ギッハブから SSH 公開鍵をガバっと取ってくる、便利なコマンドラインツールです。
## Installation
install it yourself as:
$ gem install github-keys
$ github-keys -v## Usage
基本的にはユーザー名を指定して取得します。
$ github-keys rosylilly
ssh-rsa ...また、 Organization を指定して取得することもできます。
$ github-keys cookpad
ssh-rsa ...Organization を指定した場合、認証していないと publcize membership していないメンバーは取れないので、認証しながらとるときは以下のオプションを指定します。
$ github-keys -u rosylily -p hogehoge cookpad
ssh-rsa ...コマンドログに認証情報が乗るのが耐えられない人は、 HOME はカレントディレクトリに `.github-keysrc` というファイルを作って、中にこんな感じで書くと認証できます。
$ cat .github-keysrc
login: rosylilly
password: hogehoge引っ張ってくるユーザーは複数同時に指定出来ます。
$ github-keys rosylilly yoshiori
## Contributing
1. Fork it
2. Create your feature branch (`git checkout -b my-new-feature`)
3. Commit your changes (`git commit -am 'Add some feature'`)
4. Push to the branch (`git push origin my-new-feature`)
5. Create new Pull Request