Line: 1 to 1 | ||||||||
---|---|---|---|---|---|---|---|---|
Added: | ||||||||
> > | As everyone knows, it is particularly tricky to use GIT in our network. We need a proxy to talk to servers outside research networks.
For GitHub clones, this will do:
export https_proxy=http://newman.ultralight.org:3128 export http_proxy=http://newman.ultralight.org:3128But to commit back, I had to edit the file $REPO/.git/config and add my username to the following line : url = https://samircury@github.com/samircury/CMSSW-benchmarks.gitWhich didn't have it before. Also, after git push origin master I got : -bash-4.1$ git push origin master Password: Counting objects: 10, done. Delta compression using up to 8 threads. Compressing objects: 100% (8/8), done. error: RPC failed; result=22, HTTP code = 0 Writing objects: 100% (8/8), 3.53 MiB, done. Total 8 (delta 1), reused 0 (delta 0)Then found here ![]() git config http.postBuffer 524288000There is probably a better way to do both things, but these work for me now. Feel free to update with the better ways. -- Main.samir - 2014-08-26 |