git-key
v1.3.1
Published
git ssh key configuration command line tool
Readme
Git-Key
A command line tool to make git ssh configuration easy
Getting Started
These instructions will show you how to quickly create an ssh key and add it to your github account without leaving the terminal
Installing
npm install -g git-keyUsing
Create your ssh key
git-keyCreate an ssh key with a specified name
git-key add -n myNameCreate an ssh key with a passphrase (No passphrase is default)
git-key add -p // Will prompt for passphrase
git-key add -p pass // Supplied passphrase "pass"Force replace existing ssh key (Forgo confirmation prompt)
git-key add -fCombine options
git-key add -fn myName -p passConfigure username and/or password. WARNING!!! This is not secured. Your github credentials will be stored in a configuration file. Unencrypted currently.
git-key config -u [email protected] // Will still prompt for password
git-key config -u [email protected] -p passwordConfigure ssh directory
git-key config -d ~/Developer/MyDirectoryReset configuration to default values (directory: ~/.ssh, username: null, password: null)
git-key resetPrint help
git-key -h
git-key add -h
// etcAuthors
- Jay Deaton - Github
License
This project is licensed under the MIT License - see the LICENSE file for details
