|
You are here |
utf9k.net | ||
| | | | |
hjr265.me
|
|
| | | | | Tar is a file format that allows you to archive files and directories while preserving flags and other file information. Tar is also the name of the Unix utility that manipulates these files and is also popular for being notoriously enigmatic. Did you know? Tar, the name, is derived from "tape archive". But Ridwan, I don't store my files on tapes. Do I need tar? Well, if you need to ask that question (and don't care about helping Rob disarm the bomb), then the answer may just be "no". | |
| | | | |
vadosware.io
|
|
| | | | | Yet another article on the internet about how to reasonably manage multiple git personas | |
| | | | |
memo.mx
|
|
| | | | | 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.... | |
| | | | |
purefun.dev
|
|
| | | If you install a new machine and forget to set your email and commiter name, then your Git history will be a tad ugly, with your machine name involved instead of a real email. So how do you set the default? Like this: git config --global user.name "Alice E" git config --global user.email "alice@example.org" Override per repo Ideally, do it before you start committing things. But what if you want different committer names and emails depending on the context? | ||