##// END OF EJS Templates
Backport PR #5647: Mention git hooks in install documentation...
Thomas Kluyver -
Show More
@@ -174,13 +174,31 b' step by:'
174 $ python setupegg.py develop
174 $ python setupegg.py develop
175
175
176 This creates links in the right places and installs the command line script to
176 This creates links in the right places and installs the command line script to
177 the appropriate places. Then, if you want to update your IPython at any time,
177 the appropriate places.
178
179 Then, if you want to update your IPython at any time,
178 just do:
180 just do:
179
181
180 .. code-block:: bash
182 .. code-block:: bash
181
183
182 $ git pull
184 $ git pull
183
185
186 IPython now uses git submodules to ship its javascript dependencies. If you run
187 IPython from git master, you may need to update submodules once in a while with:
188
189 .. code-block:: bash
190
191 $ git submodule update
192
193 or
194
195 .. code-block:: bash
196
197 $ python setup.py submodule
198
199 Another option is to copy `git hooks <https://github.com/ipython/ipython/tree/master/git-hooks>`_
200 to your ``./git/hooks/`` directory to ensure that your submodules are up to date on each pull.
201
184
202
185 Basic optional dependencies
203 Basic optional dependencies
186 ===========================
204 ===========================
General Comments 0
You need to be logged in to leave comments. Login now