Skip to content

Instantly share code, notes, and snippets.

View gruckion's full-sized avatar
💊
Currently working hard in the next step up in my career.

Stephen Rayner gruckion

💊
Currently working hard in the next step up in my career.
View GitHub Profile
@gruckion
gruckion / setup_mac.sh
Last active July 29, 2023 03:54
Setup Mac script
#!/bin/sh
####################################################################
# Check for Homebrew, install if we don't have it
####################################################################
if test ! $(which brew); then
echo "Installing homebrew..."
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
fi
@gruckion
gruckion / multiple_ssh_setting.md
Created June 11, 2021 22:14 — forked from jexchan/multiple_ssh_setting.md
Multiple SSH keys for different github accounts

Multiple SSH Keys settings for different github account

create different public key

create different ssh key according the article Mac Set-Up Git

$ ssh-keygen -t rsa -C "your_email@youremail.com"