» Home
Troobleshooting
- How to tell DiVA I am behind a proxy?
If you are behind a proxy you need to add the following lines in the file '~/.hgrc':
[http_proxy] host = PROXY_HOST:PORT user = YOUR_USERNAME passwd = YOUR_PASSWORD # Comma-separated list of host names that should bypass the proxy. no = localhost
- My emacs is very slow when trying to edit a file in an instance…
Don't worry, you have to disable Version Control Mode in emacs by setting the customizable variable vc-handled-backends to nil. Add the following lines in the file '~/.emacs':
(setq vc-handled-backends nil)
Back up to: Documentation