Explore >> Select a destination


You are here

vadosware.io
| | utf9k.net
1.3 parsecs away

Travel
| | Why setting for one gitconfig when you could have two or more
| | memo.mx
1.5 parsecs away

Travel
| | Be very carrefull in your setup : any misconfiguration make all the git config to fail silently ! Setup multiple git ssh identities for git Generate your SSH keys as per your git provider documentation. Add each public SSH keys to your git providers acounts. In your ~/.ssh/config, set each ssh key for each repository as in this exemple: Host github.com HostName github.com User git IdentityFile ~/.ssh/github_private_key IdentitiesOnly=yes Host gitlab.com Hostname gitlab....
| | blog.kulman.sk
1.8 parsecs away

Travel
| | I use the same machines to work on both personal and work projects. I usually have to use a different Git identity for the work projects than for my personal projects. Previously I had my personal Git identity set globally and then used local Git configs to override it in work projects. This worked just fine but it was too much work. There is a better solution. Git config allows you to use, or better to say include, another Git config for a specific directory and all its subdirectories. I have all my pro...
| | tonyfinn.com
16.1 parsecs away

Travel
| Nix Flakes can be used for more than just package definitions. This post covers how you can define a development environment in a Nix flake.