Skip to content

Commit

Permalink
Merge pull request #5647 from koldunovn/master
Browse files Browse the repository at this point in the history
Mention git hooks in install documentation
  • Loading branch information
Carreau committed Apr 19, 2014
2 parents e635c80 + eaa6854 commit 01ac428
Showing 1 changed file with 19 additions and 1 deletion.
20 changes: 19 additions & 1 deletion docs/source/install/install.rst
Original file line number Diff line number Diff line change
Expand Up @@ -174,13 +174,31 @@ step by:
$ python setupegg.py develop
This creates links in the right places and installs the command line script to
the appropriate places. Then, if you want to update your IPython at any time,
the appropriate places.

Then, if you want to update your IPython at any time,
just do:

.. code-block:: bash
$ git pull
IPython now uses git submodules to ship its javascript dependencies. If you run
IPython from git master, you may need to update submodules once in a while with:

.. code-block:: bash
$ git submodule update
or

.. code-block:: bash
$ python setup.py submodule
Another option is to copy `git hooks <https://github.com/ipython/ipython/tree/master/git-hooks>`_
to your ``./git/hooks/`` directory to ensure that your submodules are up to date on each pull.


Basic optional dependencies
===========================
Expand Down

0 comments on commit 01ac428

Please sign in to comment.