এইচটিটিপি সংযোগের প্রক্সিটির মাধ্যমে গিট প্রোটোকলটি ব্যবহার করার জন্য আমি সাকট ইনস্টল করেছি, তারপরে আমি gitproxyআপনার বিন ডিরেক্টরিতে একটি স্ক্রিপ্ট তৈরি করি ।
#!/bin/sh
# Use socat to proxy git through an HTTP CONNECT firewall.
# Useful if you are trying to clone git:// from inside a company.
# Requires that the proxy allows CONNECT to port 9418.
#
# Save this file as gitproxy somewhere in your path (e.g., ~/bin) and then run
# chmod +x gitproxy
# git config --global core.gitproxy gitproxy
#
# More details at https://www.emilsit.net/blog/archives/how-to-use-the-git-protocol-through-a-http-connect-proxy/
# Configuration. Common proxy ports are 3128, 8123, 8000.
_proxy=proxy.yourcompany.com
_proxyport=3128
exec socat STDIO PROXY:$_proxy:$1:$2,proxyport=$_proxyport
তারপরে আমি গিটটি এটির জন্য কনফিগার করেছি:
$ git config --global core.gitproxy gitproxy
এখন আমি গিটটি ডিফল্ট প্রক্সি কনফিগারেশনে পুনরায় সেট করতে চাই, আমি কীভাবে এটি করতে পারি?
git config --global --unset http.proxyএবং সবকিছু ঠিক আছে