I am using gitbash for git on my thumbdrive. I have a firewall blocking me and would like to set up my git for http access. I use github and I have seen all kinds of infom
If your firewall allows https, you can use the https-based address of your GitHub repo to push/pull.
You need:
export https_proxy=http://:@aproxy:aport
git config --system http.sslcainfo /bin/curl-ca-bundle.crt
HOME
environment variable defined (to any directory you want)%HOME%
a _netrc
file (note the '_') with in it:machine github.com login YourGitHubLogin password YourGitHubPassword
From there, all your git pull
/git push
from and to GitHub repo will work!