Skip to content

rusty-objects/setup

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 

Repository files navigation

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

About

Just a README with various setup stuff

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published