From b97fc56be92e9b41455a0083c71eafea69ee3a19 Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Thu, 11 Nov 2021 01:14:03 +0000 Subject: [PATCH] Add ProxyCommand to SSH config Signed-off-by: PandaCoderPL --- CHANGELOG.md | 4 ++++ VERSION | 2 +- home/.ssh/config | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c0dbfd6..e11a2d8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.5.1] - 2021-11-11 +### Added +- ProxyCommand to [SSH Config](home/.ssh/config) + ## [1.5.0] - 2021-11-11 ### Added - [SSH Config](home/.ssh/config) diff --git a/VERSION b/VERSION index bc80560..26ca594 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.1 diff --git a/home/.ssh/config b/home/.ssh/config index 392c699..bcdf68c 100644 --- a/home/.ssh/config +++ b/home/.ssh/config @@ -2,4 +2,5 @@ Host * AddKeysToAgent yes HashKnownHosts yes IdentitiesOnly yes +ProxyCommand nc -x 127.0.0.1:9050 -X 5 %h %p User git