Skip to content

Latest commit

 

History

History
61 lines (48 loc) · 2.14 KB

README.md

File metadata and controls

61 lines (48 loc) · 2.14 KB

git-setup

Just a README with random env setup stuff

Github setup

author identity

setting up your email on github

git config --global --edit
git commit --amend --reset-author # if already committed something with the wrong email

Setting up ssh access

options

# swap out your preferred email
ssh-keygen -t rsa -b 4096 -C "your_email@example.com"

If you generated a github specific path for the keypair, add the following to .ssh/config:

Host github.com
IdentityFile ~/.ssh/id_ed25519_github # or whatever you called it
IdentitiesOnly yes
AddKeysToAgent yes

,gitconfig

Useful shortcuts

TODO

Project setup

cloning a git repo

git clone git@github.com:rusty-objects/XXX.git

VS Code setup

# holding down repeats
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false 

# holding down does NOT repeat
defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool true