Skip to content

When we enter a new machine

Put ssh key

ssh-copy-id

or just copy ~/.ssh/id_rsa.pub to server's ~/.ssh/authorized_keys

Git

Git Code Snippets

  • 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

Changelog

Just observe 👀