This is a post image

Multiple Git Accounts

Setup multiple git ssh accounts for git Generate SSH keys ssh-keygen -q -t rsa -C "john.smith@github.com" -f ~/.ssh/id_rsa -N "" ssh-keygen -q -t rsa -C "john.smith@company.com" -f ~/.ssh/id_rsa_pro -N "" Link them with GitHub/Bitbucket, or any other account Use following example to set each ssh key for every repository in your ~/.ssh/config file You can configure ssh to send a use of a specific encryption key depending on the host....

April 16, 2022 · 2 min · Vlado
This is a post image

How to Manage Your Dotfiles

If you haven’t been tracking your dotfiles before, believe me you should definitely start do so right away. I’m preaty sure you’re also one of those guys who has always been quite annoyed by managing dotfiles. But hey, it’s never too late, so get your hands dirty and avoid of crying over lost dotfiles. Getting started with storing dotfiels in a git repository Create a git bare repository at ~/....

April 16, 2022 · 2 min · Vlado