1.3.1 • Published 5 years ago
git-key v1.3.1
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 example@example.com // Will still prompt for password
git-key config -u example@example.com -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