User:Bogdan Oniu

From Yocto Project
Jump to navigationJump to search

I just started working as a software engineer. I just graduated from the Air Force Academy in 2014 and have a masters of science in Computer Engineering. I do not have many credentials but the only reason I am requesting an account is because I just wanted to make a small change on the "Working Behind a Network Proxy" page (https://wiki.yoctoproject.org/wiki/Working_Behind_a_Network_Proxy). On the page the instructions for setting up the git proxy seem over complicated. Git supports proxy settings itself; by running the following commands you can set your git proxy settings:

git config --global http.proxy http://user:password@proxy.com:8080 git config --global https.proxy https://user:password@proxy.com:8080

If you don't have user and password just remove the 'user:password@' portion.

To verify the proxy settings on git:

git config --global http.proxy git config --global https.proxy

To remove the proxy:

git config --global --unset http.proxy git config --global --unset https.proxy