Skip to content

Instantly share code, notes, and snippets.

View dsmith73's full-sized avatar
✔️
grind

Dan dsmith73

✔️
grind
View GitHub Profile
@dsmith73
dsmith73 / brew-wsl.md
Last active May 10, 2025 15:11
install homebrew on wsl

Installing homebrew / Linuxbrew on Ubuntu-18.04 wsl for Windows 10


open wsl command line

type -

sh -c "$(curl -fsSL https://raw.githubusercontent.com/Linuxbrew/install/master/install.sh)"  
@dsmith73
dsmith73 / git-cred-store.md
Last active April 5, 2020 18:19
store credentials to access github in credential store

from commandline type git config --global credential.helper store

Then you will need to use your credentials with another interaction with github
I chose to commit a file and push

Type in your creds when prompted and complete the process

Afterwords you shouldn't need to type in your creds again.

Test this by pushing another change.

@dsmith73
dsmith73 / ssh-to-github.md
Created April 5, 2020 14:54
ssh - pushing to github without typing in credentials