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