Skip to content

Latest commit

 

History

History
40 lines (24 loc) · 680 Bytes

README.md

File metadata and controls

40 lines (24 loc) · 680 Bytes

dotfiles

Github SSH Key Setup

  1. Generate public and private keys
ssh-keygen -t rsa -C "hello@dylansleith.com"
  1. Open .ssh folder in terminal from user directory
C:\Users\Name\.ssh
  1. List all files
ls -al

There will be two files:

  • id_rsa (Private Key)
  • id_rsa.pub (Public Key)
  1. Open "id_rsa.pub" in a text editor and copy everything in the file.

  2. Open GitHub and add a SSH key and your done!

Hide MINGW64 in terminal (Windows)

  1. Go to C:\Program Files\Git\etc\profile.d\ folder

  2. Find and open git-prompt.sh file in your text editor

  3. Comment out line 16 and 17

  4. Restart terminal and you're done!