Skip to content

Commit

Permalink
Merge pull request #25 from willfurnass/git_proxy_info
Browse files Browse the repository at this point in the history
Add info on enabling git proxy
  • Loading branch information
twinkarma committed May 7, 2020
2 parents 8916ec8 + ca9837a commit 0960005
Showing 1 changed file with 31 additions and 0 deletions.
31 changes: 31 additions & 0 deletions software/git.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
.. _git:

Git
===

.. sidebar:: Git

:URL: https://git-scm.com/

Git 2.17 is available on JADE. You do not need to load any module files to access it.

Cloning/pushing to/pulling from online Git repositories
-------------------------------------------------------

JADE does not have direct Internet access so you need to tell Git to communicate with GitHub/GitLab via a proxy.

You can configure proxy connections per-repository with:

.. code-block:: sh
git config http.proxy $http_proxy
git config https.proxy $https_proxy
Or globally configure the use of a particular proxy with:

.. code-block:: sh
git config --global http.proxy $http_proxy
git config --global https.proxy $https_proxy
Then ensure you use ``https://`` rather than ``git://`` when cloning repositories on Jade.

0 comments on commit 0960005

Please sign in to comment.