When we enter a new machine
Put ssh key
ssh-copy-idor just copy ~/.ssh/id_rsa.pub to server's ~/.ssh/authorized_keys
Git
- Alias
- User/Email
- Default branch name
- Editor
Or just copy this to ~/.gitconfig
toml
[alias]
co = checkout
cm = commit
pl = pull
ps = push
st = status
df = diff
[init]
defaultBranch = main
[user]
email = <email>
name = <name>
[core]
editor = vim