Last active
September 8, 2016 21:12
-
-
Save javierwilson/7274078 to your computer and use it in GitHub Desktop.
~/.bashrc & /etc/ssh/ssh_config
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# .bashrc | |
# Source global definitions | |
if [ -f /etc/bashrc ]; then | |
. /etc/bashrc | |
fi | |
# User specific aliases and functions | |
export GIT_AUTHOR_NAME="Bob Smith" | |
export GIT_AUTHOR_EMAIL="[email protected]" | |
export GIT_COMMITTER_NAME="Bob Smith" | |
export GIT_COMMITTER_EMAIL="[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# User specific aliases and functions | |
export GIT_AUTHOR_NAME="Bob Smith" | |
export GIT_AUTHOR_EMAIL="[email protected]" | |
export GIT_COMMITTER_NAME="Bob Smith" | |
export GIT_COMMITTER_EMAIL="[email protected]" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
ServerAliveInterval 150 | |
ServerAliveCountMax 240 | |
Host * | |
ForwardAgent yes | |
GSSAPIAuthentication no | |
ForwardX11Trusted no | |
SendEnv LANG LC_CTYPE LC_NUMERIC LC_TIME LC_COLLATE LC_MONETARY LC_MESSAGES | |
SendEnv LC_PAPER LC_NAME LC_ADDRESS LC_TELEPHONE LC_MEASUREMENT | |
SendEnv LC_IDENTIFICATION LC_ALL LANGUAGE | |
SendEnv XMODIFIERS | |
SendEnv LC_* GIT_* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment