Skip to content

Instantly share code, notes, and snippets.

View charliep6's full-sized avatar
👋

charlie pham charliep6

👋
  • Philadelphia, PA
View GitHub Profile
#!/usr/bin/env bash
set -e # exit on any nonzero command
read -n1 -r -p "Make sure SSH keys are set up on remotes. Press space to continue..." key
if [ "$key" = '' ]; then
# Remove default dotfiles that may exist
if [ -f "$HOME/.profile" ]; then
rm "$HOME/.profile"
@charliep6
charliep6 / Startup
Last active September 7, 2016 15:37 — forked from jamestomasino/1 - Startup
Setup for new devs
- Install XCode
- Create SSH keys
$ ssh-keygen
- Upload public key to Assembla & Github
$ cat ~/.ssh/id_rsa.pub | pbcopy