From 797609a1d3d42be6bf34475f1d50d3d99cb8d010 Mon Sep 17 00:00:00 2001 From: PandaCoderPL Date: Thu, 25 Nov 2021 23:09:00 +0000 Subject: [PATCH] Add proxy for Git protocol to Git config and git-proxy script Signed-off-by: PandaCoderPL --- CHANGELOG.md | 5 +++++ VERSION | 2 +- home/.config/git/config | 1 + usr/bin/git-proxy | 1 + 4 files changed, 8 insertions(+), 1 deletion(-) create mode 100755 usr/bin/git-proxy diff --git a/CHANGELOG.md b/CHANGELOG.md index 26f621a..83d27f0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,11 @@ 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.7.8] - 2021-11-25 +### Added +- Proxy for Git protocol to [Git Config](home/.config/git/config) +- git-proxy script. + ## [1.7.7] - 2021-11-23 ### Changed - Style of some aliases in [Git Config](home/.config/git/config) diff --git a/VERSION b/VERSION index 91c74a5..84298f9 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.7.7 +1.7.8 diff --git a/home/.config/git/config b/home/.config/git/config index 93d8cf9..ccdf188 100644 --- a/home/.config/git/config +++ b/home/.config/git/config @@ -50,6 +50,7 @@ gpgSign = true [core] editor = vim + gitProxy = git-proxy pager = less [include] path = ~/.config/git/config-secret diff --git a/usr/bin/git-proxy b/usr/bin/git-proxy new file mode 100755 index 0000000..23e724f --- /dev/null +++ b/usr/bin/git-proxy @@ -0,0 +1 @@ +nc -X 5 -x 127.0.0.1:9050 $1 $2