Difference between revisions of "Miscellaneous git issues"

From Notes_Wiki
(Created page with "<yambe:breadcrumb>Git|Git</yambe:breadcrumb> =Miscellaneous git issues= ==Using git over http proxy== To use git over http proxy use: <pre> git config --global http.proxy <p...")
 
m
Line 12: Line 12:
git config --global http.proxy http://proxy.example.com:3128/
git config --global http.proxy http://proxy.example.com:3128/
</pre>
</pre>
<yambe:breadcrumb>Git|Git</yambe:breadcrumb>

Revision as of 08:38, 12 September 2018

<yambe:breadcrumb>Git|Git</yambe:breadcrumb>

Miscellaneous git issues

Using git over http proxy

To use git over http proxy use:

git config --global http.proxy <proxy server>

example

git config --global http.proxy http://proxy.example.com:3128/


<yambe:breadcrumb>Git|Git</yambe:breadcrumb>