Skip to content

Easy set up for git: does git config and SSH key generation

Notifications You must be signed in to change notification settings

abazlinton/git-setup

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

git-setup

When you get a new development machine, there are a bunch of things you need to do to set up Git properly, namely:

  • git config --global user.name "YOUR NAME"
  • git config --global user.email "[email protected]"
  • ssh-keygen -t rsa -b 2048 -C "[email protected]"
  • copy ~/.ssh/id_rsa.pub to the clipboard

This script does these things for you!

Usage

Install:

$ sudo npm install -g git-setup

Use:

$ git-setup
? What is your name? Fred Flintstone
? What is the email address you sign into GitHub with? [email protected]
Found an existing SSH key.
Please create a new key at https://github.com/settings/keys
SSH key copied to clipboard, just paste it into GitHub.

About

Easy set up for git: does git config and SSH key generation

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 100.0%