diff options
author | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-22 16:26:53 -0500 |
---|---|---|
committer | Luke Shumaker <LukeShu@sbcglobal.net> | 2011-11-22 16:26:53 -0500 |
commit | f03105e5140ac0e743ef537c1c63f2c518475e16 (patch) | |
tree | 0679769f87b5b719723850cfef0b8d2c74dd9536 | |
parent | 159f6b8f3301d4b9312f8cc395b0b252dd376ba9 (diff) |
Track my .ssh/config; It only does thinkgs like enable compression and set up master-control
-rw-r--r-- | .git.info.exclude | 1 | ||||
-rw-r--r-- | .ssh/config | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/.git.info.exclude b/.git.info.exclude index 35e6e7e..78497e1 100644 --- a/.git.info.exclude +++ b/.git.info.exclude @@ -13,6 +13,7 @@ # Ignore these for privacy .ssh/* +!.ssh/config .netrc .gnupg/* diff --git a/.ssh/config b/.ssh/config new file mode 100644 index 0000000..c0f6c57 --- /dev/null +++ b/.ssh/config @@ -0,0 +1,5 @@ +Host * +ControlMaster auto +ControlPath ~/.ssh/master-%r@%h:%p +Protocol 2 +Compression yes |