You are here |
fundor333.com | ||
| | | |
taylorbrazelton.com
|
|
| | | | ||
| | | |
willhaley.com
|
|
| | | | This article outlines a process for loading a custom git configuration when in a specific directory tree. This sets up a sort of local git configuration per-directory without needing to alter the global .gitconfig file or any other global git or ssh configurations. See here an example .envrc file. This file would be used by direnv to set per-directory env variables with the direnv shell helper. PATH=$PATH:$(pwd)/bin export GIT_AUTHOR_EMAIL="Email to use for this organization" export GIT_AUTHOR_NAME="Name to use for this organization" export GIT_COMMITTER_EMAIL="Email to use for this organization" export GIT_COMMITTER_NAME="Name to use for this organization" export GIT_SSH="my-special-ssh-command-for-this-organization.sh" Setting GIT_SSH allows for customizing the ssh command and identity used for this directory. | |
| | | |
vadosware.io
|
|
| | | | Yet another article on the internet about how to reasonably manage multiple git personas | |
| | | |
www.integralist.co.uk
|
|
| | I thought I would get down in a blog post the different Git commands and tips that I find really useful, because every now and then it seems I need to refer back to these notes (which up until this point have been in a txt file in my Dropbox) if I've not used a particular command in a while. Hopefully you'll find them useful too. Show where Git is installed Show the Git version installed Update your global user details Set-up a global ignore file Adding all files (inc. |